This journal complements the 17-Energy Results journal to understand the sensitivity of our metrics to three module design aspects; lifetime, efficiency, and material circularity. This journal creates a simple modern module; 25 years, 20% efficiency, no material circularity, and modifies first one parameter, and then two parameters at a time. This will allow us to elucidate if there are multiplicative effects of changing design aspects
import numpy as np
import pandas as pd
import os,sys
from pathlib import Path
import matplotlib.pyplot as plt
cwd = os.getcwd() #grabs current working directory
testfolder = str(Path().resolve().parent.parent / 'PV_ICE' / 'TEMP' / 'EnergyAnalysis'/'Sensitivity')
inputfolder = str(Path().resolve().parent.parent / 'PV_ICE' / 'TEMP')
baselinesfolder = str(Path().resolve().parent.parent /'PV_ICE' / 'baselines')
supportMatfolder = str(Path().resolve().parent.parent / 'PV_ICE' / 'baselines' / 'SupportingMaterial')
altBaselinesfolder = str(Path().resolve().parent.parent / 'PV_ICE' / 'baselines' / 'Energy_CellModuleTechCompare')
if not os.path.exists(testfolder):
os.makedirs(testfolder)
from platform import python_version
print(python_version())
3.8.8
import PV_ICE
PV_ICE.__version__
'v0.2.0+486.g25106de.dirty'
colorpalette=['#000000', #PV ICE baseline '#595959', '#7F7F7F', '#A6A6A6', '#D9D9D9', # greys
#'#067872','#0aa39e','#09d0cd','#00ffff', # teals
'#0579C1','#C00000','#FFC000', #b,r,y
'#6E30A0','#00B3B5','#10C483', #
'#97CB3F','#FF7E00' #
]
colormats = ['#00bfbf','#ff7f0e','#1f77be','#2ca02c','#d62728','#9467BD','#8C564B'] #colors for material plots
import matplotlib as mpl #import matplotlib from cycler import cycler #import cycler mpl.rcParams['axes.prop_cycle'] = cycler(color=colorpalette) #reset the default color palette of mpl
plt.rcParams.update({'font.size': 14}) plt.rcParams['figure.figsize'] = (8, 6)
scennames_labels = []
scennames_labels_flat = []
MATERIALS = ['glass', 'silicon', 'silver', 'aluminium_frames', 'copper', 'encapsulant', 'backsheet']
moduleFile_m = os.path.join(baselinesfolder, 'baseline_modules_mass_US.csv')
moduleFile_e = os.path.join(baselinesfolder, 'baseline_modules_energy.csv')
#load in a baseline and materials for modification
sim1 = PV_ICE.Simulation(name='sim1', path=testfolder)
sim1.createScenario(name='PV_ICE', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['PV_ICE'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
path = C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\TEMP\EnergyAnalysis\Sensitivity Baseline folder directed to default: C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\baselines
First, examine only the effect of one set of parameters (life, eff, material circularity) at a time. Possibly get to interactions.
timeshift = 2022-1995
#life sensitivity
#mod_reliability_t50, mod_reliability_t90, mod_degradation, mod_lifetime
sim1.createScenario(name='life_high', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['life_high'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
#Lifetime and Degradation
#degradation rate:
sim1.modifyScenario('life_high', 'mod_degradation',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_degradation']-0.1, start_year=2022) #standard current degrdation
#T50
sim1.modifyScenario('life_high', 'mod_reliability_t50',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t50']+10, start_year=2022)
#t90
sim1.modifyScenario('life_high', 'mod_reliability_t90',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t90']+10, start_year=2022)
#Mod Project Lifetime
sim1.modifyScenario('life_high', 'mod_lifetime',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_lifetime']+10, start_year=2022) #project lifetime of 25 years
#--------------------------------------------------------------------------------------
#life low
sim1.createScenario(name='life_low', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['life_low'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
#Lifetime and Degradation
#degradation rate:
sim1.modifyScenario('life_low', 'mod_degradation',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_degradation']+0.1, start_year=2022) #standard current degrdation
#T50
sim1.modifyScenario('life_low', 'mod_reliability_t50',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t50']-10, start_year=2022)
#t90
sim1.modifyScenario('life_low', 'mod_reliability_t90',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t90']-10, start_year=2022)
#Mod Project Lifetime
sim1.modifyScenario('life_low', 'mod_lifetime',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_lifetime']-10, start_year=2022) #project lifetime of 25 years
sim1.createScenario(name='eff_high', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['eff_high'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
sim1.modifyScenario('eff_high', 'mod_eff',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_eff']+5, start_year=2022) #
#-------------------------------------------------------------------------------------------------------
sim1.createScenario(name='eff_high_bifi', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['eff_high_bifi'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
sim1.modifyScenario('eff_high_bifi', 'mod_eff',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_eff']+5, start_year=2022) #
#------------------------------------------------------------------------------------------------------
sim1.createScenario(name='eff_low', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['eff_low'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
sim1.modifyScenario('eff_low', 'mod_eff',
sim1.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_eff']-5, start_year=2022) #
Here, we will use recycling as a stand in for the forms of material circularity. We set to 0%, 25%, and 100% closed loop (through mat_PG4_Recycling_target). This will give us the maximum and minimum, as well as a middle value that is a change more comparable to varying lifetime and efficiency (also changed by 20-30%). Using the recycling target variable means that it will not spend energy on recycling unless it is a target.
mod_circ_vars = ['mod_EOL_collection_eff', 'mod_EOL_pg4_recycled', 'mod_EOL_pb4_recycled']
mod_alt_paths = ['mod_EOL_pg0_resell','mod_EOL_pg1_landfill','mod_EOL_pg2_stored','mod_EOL_pg3_reMFG',
'mod_EOL_reMFG_yield','mod_EOL_sp_reMFG_recycle',
'mod_EOL_pb1_landfill','mod_EOL_pb2_stored','mod_EOL_pb3_reMFG']
mat_circ_vars = ['mat_MFG_scrap_Recycled', 'mat_MFG_scrap_Recycling_eff', 'mat_MFG_scrap_Recycled_into_HQ',
'mat_MFG_scrap_Recycled_into_HQ_Reused4MFG', 'mat_PG4_Recycling_target', 'mat_Recycling_yield',
'mat_EOL_Recycled_into_HQ', 'mat_EOL_RecycledHQ_Reused4MFG']
sim1.createScenario(name='circ_high', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['circ_high'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
for var in range(0,len(mod_alt_paths)):
sim1.modifyScenario('circ_high', mod_alt_paths[var], 0.0, start_year=2022) #set non recycle to 0
sim1.modifyScenario('circ_high', 'mod_EOL_collection_eff',100.0, start_year=2022) #collect everything
for var in range(0,len(mod_circ_vars)):
sim1.modifyScenario('circ_high', mod_circ_vars[var], 100.0, start_year=2022) #set recycle paths to 100%
for mat in range (0, len(MATERIALS)):
for mvar in range(0,len(mat_circ_vars)):
sim1.scenario['circ_high'].modifyMaterials(MATERIALS[mat], mat_circ_vars[mvar],100.0, start_year=2022) #
#sim1.scenario['circ_high'].modifyMaterials(MATERIALS[mat], 'mat_PG4_Recycling_target',100.0, start_year=2022) #
#--------------------------------------------------------------------------------------------------------
sim1.createScenario(name='circ_mid', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['circ_mid'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
for var in range(0,len(mod_alt_paths)):
sim1.modifyScenario('circ_mid', mod_alt_paths[var], 0.0, start_year=2022) #set non recycle to 0
sim1.modifyScenario('circ_mid', 'mod_EOL_collection_eff',100.0, start_year=2022) #collect everything
for var in range(0,len(mod_circ_vars)):
sim1.modifyScenario('circ_mid', mod_circ_vars[var], 25.0, start_year=2022) #set recycle paths to 25%
for mat in range (0, len(MATERIALS)):
for mvar in range(0,len(mat_circ_vars)):
sim1.scenario['circ_mid'].modifyMaterials(MATERIALS[mat], mat_circ_vars[mvar],100.0, start_year=2022) #
#sim1.scenario['circ_mid'].modifyMaterials(MATERIALS[mat], 'mat_PG4_Recycling_target',25.0, start_year=2022) #
#-----------------------------------------------------------------------------------------------------------
sim1.createScenario(name='circ_low', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim1.scenario['circ_low'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
#sim1.scenMod_noCircularity(scenarios='circ_low') #sets all years to 0
for var in range(0,len(mod_circ_vars)):
sim1.modifyScenario('circ_low', mod_circ_vars[var],0.0, start_year=2022) #set recycle to 0
for var in range(0,len(mod_alt_paths)):
sim1.modifyScenario('circ_low', mod_alt_paths[var], 0.0, start_year=2022) #set non recycle to 0
sim1.modifyScenario('circ_low', 'mod_EOL_collection_eff',0.0, start_year=2022) #collect nothing
sim1.modifyScenario('circ_low','mod_EOL_pb1_landfill',100.0,start_year=2022) #landfill up just in case
sim1.modifyScenario('circ_low','mod_EOL_pg1_landfill',100.0,start_year=2022)
for mat in range (0, len(MATERIALS)):
for mvar in range(0,len(mat_circ_vars)):
sim1.scenario['circ_low'].modifyMaterials(MATERIALS[mat], mat_circ_vars[mvar],0.0, start_year=2022) #
#trim to start in 2000, this trims module and materials
#had to specify and end year, cannot use to extend
sim1.trim_Years(startYear=2000, endYear=2100)
Trimming and extending PV_ICE PV_ICE glass : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE silicon : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE silver : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE copper : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending life_high life_high glass : Data trimmed for Energy, years now encompass 2000 to 2100 life_high silicon : Data trimmed for Energy, years now encompass 2000 to 2100 life_high silver : Data trimmed for Energy, years now encompass 2000 to 2100 life_high aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 life_high copper : Data trimmed for Energy, years now encompass 2000 to 2100 life_high encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 life_high backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 life_high backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending life_low life_low glass : Data trimmed for Energy, years now encompass 2000 to 2100 life_low silicon : Data trimmed for Energy, years now encompass 2000 to 2100 life_low silver : Data trimmed for Energy, years now encompass 2000 to 2100 life_low aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 life_low copper : Data trimmed for Energy, years now encompass 2000 to 2100 life_low encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 life_low backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 life_low backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending eff_high eff_high glass : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high silicon : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high silver : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high copper : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending eff_high_bifi eff_high_bifi glass : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi silicon : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi silver : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi copper : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 eff_high_bifi backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending eff_low eff_low glass : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low silicon : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low silver : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low copper : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 eff_low backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_high circ_high glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_high backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_mid circ_mid glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_mid silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_mid silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_mid aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_mid copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_mid encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_mid backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_mid backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_low circ_low glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_low backsheet : Data trimmed for Mass, years now encompass 2000 to 2100
global_projection = pd.read_csv(os.path.join(supportMatfolder,'output-globalInstallsProjection.csv'), index_col=0)
global_projection.iloc[-1,:]
#fig, ax1 = plt.subplots()
#ax1.stackplot(global_projection.index, global_projection['World_cum']/1e6, color='#F7A11A')
#ax1.set_ylabel('Cumulative Solar Capacity [TW]', color='#F7A11A')
#ax1.set_ylim(0,90)
#ax1.set_xlim(2000,2100)
#ax2 = ax1.twinx()
#ax2.plot(global_projection['World_annual_[MWdc]']/1e6)
#ax2.set_ylabel('Annual Installations [TW]')
#ax2.set_ylim(0,5)
#plt.show()
#fig.savefig('energyresults-deployment.png', dpi=300, bbox_inches='tight')
World_cum 85966000.0 World_annual_[MWdc] 219320.0 Name: 2100, dtype: float64
#deployment projection for all scenarios
sim1.modifyScenario(scenarios=None,stage='new_Installed_Capacity_[MW]',
value= global_projection['World_annual_[MWdc]'], start_year=2000)
scennames_labels = sim1.scenario.keys()
scennames_labels
dict_keys(['PV_ICE', 'life_high', 'life_low', 'eff_high', 'eff_high_bifi', 'eff_low', 'circ_high', 'circ_mid', 'circ_low'])
bifiFactors = {'PV_ICE':0.0,
'life_high':0.0,
'life_low': 0.0,
'eff_high': 0.0,
'eff_high_bifi': 0.9,
'eff_low': 0.0,
'circ_high':0.0,
'circ_mid':0.0,
'circ_low': 0.0
}
#PV ICE currently set up to read in a csv of bifi factors, so generate files to read in
idx_temp = pd.RangeIndex(start=2000,stop=2101,step=1) #create the index
df_temp = pd.DataFrame(index=idx_temp, columns=['bifi'], dtype=float)
bifiPathDict={}
for f in bifiFactors.keys(): #loop over module types
bifi = df_temp.copy() #copy of df
bifi['bifi'] = bifiFactors[f] #assign column
bifipath = os.path.join(testfolder,'bifi_'+str(f)+'.csv') #create file path
bifi.to_csv(path_or_buf=bifipath, index_label='year') #create file
bifiPathDict[str(f)] = bifipath
#append bifi path to dict? or list?
#CALCULATE MASS FLOWs
#13 scenarios, 7 mats =
for scen in sim1.scenario.keys(): #loop over scenarios
sim1.calculateMassFlow(scenarios=[scen], bifacialityfactors=bifiPathDict[scen])
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: life_high ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: life_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet
#sim1.calculateMassFlow()
ii_yearly, ii_cumu = sim1.aggregateResults() #have to do this to get auto plots
sim1.saveSimulation(customname='_EnergySensitivity_identicalinstalls')
:) Saved Input and Output Dataframes
effective_capacity = ii_yearly.filter(like='ActiveCapacity')
plt.plot(ii_cumu['newInstalledCapacity_sim1_PV_ICE_[MW]']/1e6, label='Capacity Target', color='black', ls='--')
plt.plot(effective_capacity/1e6, label=sim1.scenario.keys())
plt.legend()
plt.ylabel('Effective Capacity [TW]')
plt.title('Effective Capacity: No Replacements')
plt.ylim(0,)
(0.0, 90.26425956655)
cumu_installs = ii_cumu.filter(like='newInstalled')
total_installed = cumu_installs.loc[2100]
total_installed.index= scennames_labels
plt.bar(scennames_labels, total_installed/1e6)
plt.xticks(rotation=45)
plt.ylabel('Cumulative installed [TW]')
plt.title('Cumulative Installs with Replacements')
#plt.ylim(0,410)
Text(0.5, 1.0, 'Cumulative Installs with Replacements')
cumu_virgin_module = ii_cumu.filter(like='VirginStock_Module')
virgin = cumu_virgin_module.loc[2100]
virgin.index= scennames_labels
plt.bar(scennames_labels, virgin/1e9)
#plt.legend(scennames)
plt.title('Cumulative Virgin Material Demands')
plt.ylabel('Virgin Material Requirements\n[billion tonnes]')
#plt.xticks(rotation=90)
Text(0, 0.5, 'Virgin Material Requirements\n[billion tonnes]')
sim1.scenario['eff_high'].dataIn_m
| year | new_Installed_Capacity_[MW] | mod_eff | mod_reliability_t50 | mod_reliability_t90 | mod_degradation | mod_lifetime | mod_MFG_eff | mod_Repair | mod_MerchantTail | ... | mod_EOL_pg1_landfill | mod_EOL_pg2_stored | mod_EOL_pg3_reMFG | mod_EOL_pg4_recycled | mod_EOL_reMFG_yield | mod_EOL_sp_reMFG_recycle | mod_EOL_pb1_landfill | mod_EOL_pb2_stored | mod_EOL_pb3_reMFG | mod_EOL_pb4_recycled | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 2000 | 808.669 | 13.420000 | 19.0 | 23.0 | 0.75 | 20.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| 1 | 2001 | 284.317 | 13.600000 | 19.0 | 23.0 | 0.75 | 20.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| 2 | 2002 | 344.073 | 13.722222 | 19.0 | 23.0 | 0.75 | 20.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| 3 | 2003 | 527.971 | 13.844444 | 19.0 | 23.0 | 0.75 | 20.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| 4 | 2004 | 1086.949 | 13.966667 | 19.0 | 23.0 | 0.75 | 20.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 96 | 2096 | 219320.000 | 30.001640 | 40.0 | 44.0 | 0.50 | 35.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| 97 | 2097 | 219320.000 | 30.001640 | 40.0 | 44.0 | 0.50 | 35.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| 98 | 2098 | 219320.000 | 30.001640 | 40.0 | 44.0 | 0.50 | 35.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| 99 | 2099 | 219320.000 | 30.001640 | 40.0 | 44.0 | 0.50 | 35.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
| 100 | 2100 | 219320.000 | 30.001640 | 40.0 | 44.0 | 0.50 | 35.0 | 98.0 | 0.0 | 0.0 | ... | 60.0 | 0.0 | 0.0 | 40.0 | 0.0 | 100.0 | 60.0 | 0.0 | 0.0 | 40.0 |
101 rows × 22 columns
#plt.plot(sim1.scenario['eff_high'].dataOut_m['Yearly_Sum_Area_PathsBad'])
#plt.plot(sim1.scenario['eff_high'].dataOut_m['Cumulative_Active_Area'])
plt.plot(sim1.scenario['eff_high'].dataOut_m['Area']/1e10, label='eff_high')
#plt.plot(sim1.scenario['eff_high_bifi'].dataOut_m['Yearly_Sum_Area_PathsBad'])
#plt.plot(sim1.scenario['eff_high_bifi'].dataOut_m['Cumulative_Active_Area'])
plt.plot(sim1.scenario['eff_high_bifi'].dataOut_m['Area']/1e10, label='eff_high_bifi')
plt.plot(sim1.scenario['PV_ICE'].dataOut_m['Area']/1e10, label='PVICE')
plt.plot(sim1.scenario['eff_high_bifi'].dataIn_m['new_Installed_Capacity_[MW]']/1e6, label='eff_high_bifi_installs')
plt.plot(sim1.scenario['PV_ICE'].dataIn_m['new_Installed_Capacity_[MW]']/1e6, label='PVICE_installs')
plt.legend()
<matplotlib.legend.Legend at 0x1fc069ebac0>
UnderInstall_df = pd.DataFrame()
for row in range (0,len(sim1.scenario['PV_ICE'].dataIn_m)): #loop over length of years
print(row)
for scen in sim1.scenario.keys(): #loop over scenarios
print(scen)
Under_Installment = global_projection.iloc[row,0] - ((sim1.scenario[scen].dataOut_m['Effective_Capacity_[W]'][row])/1e6) # MWATTS
sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
UnderInstall_df.loc[row,scen] = Under_Installment #save the underinstallment as df
#calculate flows for that scenario with it's bifi factor and modified weibull
sim1.calculateMassFlow(scenarios=[scen], bifacialityfactors=bifiPathDict[scen])
sim1.calculateEnergyFlow()
0 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 1 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 2 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_high ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 3 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 4 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 5 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 6 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_high ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 7 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 8 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 9 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 10 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 11 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 12 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 13 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: life_high ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 14 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 15 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 16 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 17 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: life_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 18 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 19 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 20 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 21 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522281.0480266041 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78240039.20964287 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 22 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787195276.6245084 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92137323.551914 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522370.0331784635 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 315981852.8637393 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1905079.478916816 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185870755.69400868 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78249089.93890864 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 23 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787421571.4978733 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92145977.2661618 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522470.6197191128 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316010223.10240877 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1905299.08363438 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185888718.48207664 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78260304.15714504 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 24 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2787753322.5102015 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92158135.3186515 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522593.43704018486 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316050622.1522593 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1905609.6324606165 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185913857.16491142 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78275471.89481662 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 25 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2788227043.1910014 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92175283.71670865 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522747.92204010184 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316107844.0453842 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1906031.5436963488 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185948190.46619388 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78296097.5906738 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 26 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2788888852.2380667 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92198945.35354482 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 522940.98065930686 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316187461.4129709 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1906594.3077959258 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 185994449.43586808 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78322998.88555433 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426233162.6874477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14056687.844464416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79082.69019301583 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48247896.22123377 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290035.9591884496 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28333066.983154226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11899991.040827412 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 27 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2789926501.1222167 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92235084.68404324 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 523177.6819884945 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316309971.9112594 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1907391.761098963 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186064979.1339966 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78359045.09197274 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426472215.617196 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14065013.601824885 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79136.83521893906 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48276120.11660741 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290219.1530635853 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28349315.572854865 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11908256.351073697 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 28 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2791301481.9354954 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92281736.62505063 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 523468.5348794645 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316469328.64485127 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1908399.0236872435 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186155843.23558044 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78404029.8430971 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 426797065.9959624 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14076035.501592556 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79205.24073045597 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48313769.43852254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290456.6857330204 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28370782.954458095 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11918852.051046932 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 29 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2793101589.7211823 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92341238.93991047 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 523820.6539082674 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316674172.1953207 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1909655.0701142598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186273929.41358855 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78459126.38977602 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 427230031.4016186 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14090347.113428034 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79289.69267075224 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48363038.805407286 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 290758.43349928886 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28399185.270347293 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11932078.335809648 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 30 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2795367450.4316335 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92415953.5149775 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 524234.9240568888 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 316931048.95472646 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1911181.2284745786 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186423578.9659491 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78524902.07039961 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 427781906.6853505 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14108544.669493087 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79390.41641753186 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48425603.963904135 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 291129.8681821223 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28435634.06386245 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11948079.356112953 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 31 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2797740088.0142555 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92493997.85689422 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 524670.3802205924 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 317199017.14066404 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1912786.0908413366 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186581352.8259736 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78590032.36400834 tonnes. circ_mid
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 428364844.2304817 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14127719.5225855 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79497.29170758514 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48491441.54383115 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 291523.9876498038 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28474397.80398112 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11964069.483356506 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 32 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2800993751.8636756 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92601022.23171073 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 525267.2749926466 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 317566489.36051166 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1914986.48129674 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 186797712.50454617 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78679320.83767305 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 429169026.6329967 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14154171.89223731 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79644.7298478154 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48582266.75082579 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 292067.6890172063 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28527873.71734348 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11986128.41411271 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 33 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2804174565.4355016 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92705650.30630213 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 525850.6512047087 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 317925733.79332805 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1917137.3588633481 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 187009227.84044114 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78766594.05575582 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 429958379.5820324 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14180136.469338644 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79789.4491682421 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48671417.10373549 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 292601.3643082991 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28580363.51292088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12007780.569134418 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 34 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2808613754.4781585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 92851670.7478629 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 526664.6914524983 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 318427100.4763427 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1920138.9447025075 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 187304421.67694125 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 78888380.21572058 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 431062974.40776515 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14216470.453462625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 79991.96467505336 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48796171.206012085 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 293348.17214107234 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28653816.024461385 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12038079.890156988 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 35 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2813439329.2291484 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93010400.76570019 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 527549.5047579606 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 318972105.96795267 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1923401.651473931 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 187625309.09812894 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79020757.86377515 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 432265829.29683965 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14256036.554466296 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 80212.49510105795 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 48932022.903267615 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 294161.41282618465 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28733802.559399817 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12071074.510065204 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 36 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2818032791.4253945 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93161495.79043178 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 528391.7146926689 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 319490896.4233161 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1926507.3449560367 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 187930761.67415085 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79146763.28798284 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 433412127.2457216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14293742.300053503 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 80422.65642416618 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 49061487.00016793 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 294936.415810966 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28810028.21369187 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12102517.758513922 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 37 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_high ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2824257545.2388563 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93366249.69744375 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 529532.9892598252 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 320193926.6709692 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1930715.915950823 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 188344690.64671937 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79317513.8106859 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 434966631.25379205 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14344875.369513994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 80707.65791041312 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 49237054.319056585 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 295987.40368657396 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28913398.445864383 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12145158.204471244 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 38 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2830060746.3905454 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93557137.2641801 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 530596.9585714351 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 320849346.31728977 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1934639.4446724465 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 188730587.5291201 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79476698.9404396 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 436416508.3878277 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14392566.895440541 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 80973.47719163098 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 49400804.9686651 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 296967.6541594461 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 29009811.279275406 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12184928.708283158 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 39 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2836579374.5242863 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93771557.72460942 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 531792.0864684732 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 321585567.03999704 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1939046.6541563289 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 189164058.33404103 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79655507.5719415 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 438045570.4940834 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14446152.4413138 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 81272.14809827451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 49584792.95764005 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 298069.0501760522 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 29118139.419487868 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12229614.30210748 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 40 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2844772000.2107983 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 94041041.81478697 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 533294.1201828112 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 322510850.80830634 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1944585.6332488398 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 189708845.3625212 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 79880233.96856377 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 440093309.1782962 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14513509.723014701 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 81647.57882435569 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 49816066.72001399 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 299453.5101184827 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 29254308.398221124 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12285784.302471312 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 41 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2852784634.3728247 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 94304605.35469502 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 534763.1517727083 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 323415806.14438707 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1950002.9160047998 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 190241663.45069712 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 80100022.82646595 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 442096246.00236064 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14579393.314963093 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 82014.79561424715 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 50042280.513145864 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 300807.67987730715 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 29387498.176732793 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12340725.376253722 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 42 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2861674070.7769837 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 94597009.98456965 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 536392.9345323204 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 324419788.44858617 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1956012.9955901532 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 190832786.47142273 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 80343862.46569243 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 444318475.8219298 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14652490.219912374 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 82422.21740156412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 50293261.48801029 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 302310.1118974605 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 29535270.335052714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12401681.713473918 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 43 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2872313003.2230663 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 94946961.65335065 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 538343.4680064864 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 325621360.67721933 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1963205.8946048683 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 191540246.15715513 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 80635691.17438301 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 446978130.4426546 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14739975.555271039 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 82909.83629213934 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 50593645.68033545 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 304108.28336898726 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 29712130.037064202 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12474636.725832444 tonnes. circ_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 44 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2884196069.6063523 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 95337837.2352891 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 540522.0997540507 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 326963446.70225245 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1971239.942219598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 192330437.3207574 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 80961646.76876783 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 449948854.2823944 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14837693.044358693 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 83454.48635747175 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 50929162.35767685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 306116.7662813096 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 29909674.984803174 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12556124.447115185 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 45 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2895657711.0240116 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 95714850.67732444 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 542623.4677022506 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 328257936.54809034 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1978989.0675110093 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 193092604.88563365 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 81276042.55495977 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 452814245.39196205 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14931945.771837248 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 83979.82480669142 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 51252782.64560302 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 308054.0345671395 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 30100215.596292946 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12634722.864436585 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 46 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2909514269.5710473 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 96170641.31343117 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 545163.9177613085 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 329822910.85532695 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1988357.3772798944 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 194014027.83898902 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 81656131.53223194 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 456278374.69781613 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 15045893.091044376 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 84614.93542435103 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 51644025.05562895 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 310396.1050160348 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 30330570.647655096 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12729744.824938832 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 47 PV_ICE
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2922924819.8279414 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 96611761.17817841 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 547622.5970177903 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 331337512.51682204 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1997424.1443416267 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 194905792.47029212 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 82023986.38569231 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 459631008.0661129 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 15156172.919212492 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 85229.6044685252 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 52022674.99711031 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 312662.7939426282 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 30553511.526463307 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12821708.423111225 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 48 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2938565694.2934284 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 97126244.20061798 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 550490.1820781209 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 333104009.34199774 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2007998.8159697722 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 195945867.5144763 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 82453019.60724808 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 463541224.75745726 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 15284793.611501517 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 85946.50038052992 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 52464298.98598963 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 315306.4605477107 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 30813530.159500353 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12928966.675674787 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 49 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2955371900.3007436 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 97679059.05003479 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 553571.4180643447 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 335002119.93809533 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2019361.359042944 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 197063433.89442506 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 82914018.17354493 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 467742775.504396 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 15422997.29902475 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 86716.80923866264 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 52938826.54975593 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 318147.0958055543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 31092921.704289448 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 13044216.296538854 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 50 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2975389712.6847734 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 98337514.8570096 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 557241.4673220231 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 337262952.73880476 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2032895.2438078865 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 198394563.2469258 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 83463111.93124261 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 472747228.29987365 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 15587611.240882972 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 87634.32149798067 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 53504034.71599116 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 321530.566793595 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 31425704.022430245 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 13181489.727719255 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 51 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2997077331.212422 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 99050896.42363763 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 560767.4137569807 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 339712375.20295477 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2047558.0713110892 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 199836730.10582942 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 84058008.90221876 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 478169132.8337669 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 15765956.6293158 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 88628.36901566229 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 54116390.320958294 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 325196.27360312507 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 31786245.73063815 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 13330213.967774589 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 52 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3015817080.9179287 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 99667312.28257981 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 564203.1440543853 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 341828862.2595073 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2060227.8679987553 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 201082871.81267345 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 84572045.07094066 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 482854070.2376791 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 15920060.593312414 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 89487.30158589488 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 54645512.08255927 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 328363.72275985364 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 32097781.155855354 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 13458723.00933886 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 53 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_high ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3035416181.6079946 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 100311995.19863883 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 567796.4270544758 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 344042405.3207792 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2073478.6650961826 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 202386157.99153593 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 85109653.45885612 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 487753845.4048669 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 16081231.322151884 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 90385.62233494048 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 55198897.84727536 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 331676.4220306076 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 32423602.70021661 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 13593125.106171552 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 54 PV_ICE
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3055971913.195142 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 100988145.04810843 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 571428.0465142544 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 346363991.282484 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2087376.2327834861 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 203753057.4884865 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 85665862.4336774 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 492892778.300614 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 16250268.784485089 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 91327.79006523092 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 55779294.33758414 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 335150.81395173055 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 32765327.574385125 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 13734087.361194238 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 55 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3077552471.375847 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 101698005.02577409 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 574907.5228115292 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 348801322.238362 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2101422.880456818 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 205188105.12938696 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 86200868.42035276 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 498287917.84563375 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 16427733.77889636 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 92316.93051186689 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 56388627.07653599 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 338798.42516378965 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 33124089.484599832 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 13882077.430700181 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 56 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3099775636.2760825 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 102394201.90379474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 578237.8342585985 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 351227318.19112796 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2115078.32507386 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 206596889.55809063 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 86714638.74314183 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 503945264.91573524 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 16613823.69516274 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 93354.14387048341 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 57027573.80936117 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 342623.3128114988 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 33500287.47256304 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 14037259.920260897 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 57 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_high ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3120846512.782079 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 103028070.13692683 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 580869.3039919726 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 353463949.5712474 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2127242.775371737 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 207879100.6267007 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 87144186.62409392 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 510393901.8934021 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 16825941.901865736 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 94536.43166991031 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 57755889.657231174 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 346983.1853126559 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 33929104.05850743 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 14214147.69611546 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 58 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3141313723.7506366 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 103638822.48560081 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 583282.4200130433 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 355626826.0576378 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2138675.5043504247 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 209107859.0308703 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 87539226.61699185 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 517341167.4922504 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 17054461.746512085 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 95810.13763061842 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 58540521.14641667 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 351680.1766842518 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 34391078.073491454 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 14404712.983680442 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 59 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3161209910.5689354 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 104235758.12859832 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 585633.9891010947 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 357735405.107835 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2149515.978349514 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 210311380.46317437 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 87909011.25213963 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 524708333.23438686 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 17296793.57432587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 97160.82773822549 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 59372576.59975746 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 356661.05922452285 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 34880974.29071846 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 14606796.240497598 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 60 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: life_high ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3180885815.8628216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 104828164.82524592 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 588044.6004268441 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 359824289.52355015 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2160356.4688913035 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 211531178.87541956 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88269545.89969556 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 532390207.3812081 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 17549477.261403468 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 98569.21622589714 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 60240175.55157457 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 361854.71363026276 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 35391797.749490105 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 14817512.0300407 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 61 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3200477911.0676184 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 105424114.46718764 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 590617.9217952703 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 361911204.6060303 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2171457.4305810607 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 212780225.36896104 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88645579.93173994 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 540324285.2321125 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 17810456.809702463 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 100023.84353323575 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 61136258.65519171 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 367218.88096732897 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 35919392.05948534 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 15035145.832247877 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 62 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3213364918.3037395 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 105764716.64868635 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 591109.5194818717 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 363145046.2009012 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2176266.0539972535 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 213577083.50659513 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88685426.03433602 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 550207452.2343423 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 18114724.58090008 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 101368.04133733685 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 62197066.297404714 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 372924.7669926064 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 36561572.344733715 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 15227831.695094012 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 63 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3224276117.0574393 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 106072112.84309636 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 591747.0710837702 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 364229434.64980394 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2180891.533722879 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 214325096.8655666 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88721504.03642517 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 559596667.1159673 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 18410690.855325513 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 102748.72762026229 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 63220510.65312568 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 378584.86709524185 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 37191541.43531648 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 15419575.53281339 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 64 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3233159691.4400015 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 106355022.30992965 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 592712.4385074496 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 365183516.62116724 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2185720.4844666948 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 214967588.90801114 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88785433.40861087 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 568478975.9048082 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 18700535.44785677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 104211.3678586329 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 64211378.38946176 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 384295.83495242486 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 37795130.196767464 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 15618282.213056928 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 65 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3242505656.2274404 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 106657342.84706168 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 594478.3200243704 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 366212001.7636639 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2192232.450732148 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 215617689.47829115 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 88942766.62065046 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 577476882.294868 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 18995232.8079627 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 105874.13662031395 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 65220846.918581195 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 390427.55669001746 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 38400621.09017735 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 15840339.853263928 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 66 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3180084591.6749086 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 104604095.8866218 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 583034.0933911637 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 359162101.0308466 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2150030.062261832 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 211466860.72407037 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 87230540.71719038 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 568533031.3499345 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 18701038.293675676 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 104234.37834446304 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 64210718.978872165 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 384380.6897436675 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 37805879.65246202 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 15595007.71459602 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 67 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3108316553.9718065 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 102243394.31373188 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 569876.2003884964 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 351056543.3121035 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2101508.259107552 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 206694484.01650354 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 85261924.9289682 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 557252437.1173592 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 18329980.126276117 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 102166.20347624698 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 62936676.79268165 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 376753.96912632673 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 37055751.22641012 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 15285578.104737578 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 68 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 3028386085.161887 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 99614201.85591367 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 555221.813980373 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 342029112.0326631 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 2047467.9007844112 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 201379328.13678688 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 83069411.54982078 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 543931235.1080786 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 17891799.237644486 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 99723.90525666696 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 61432166.21631689 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 367747.60971677065 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 36169928.007320784 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 14920174.097147819 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 69 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2939464840.3230333 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 96689271.3538033 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 538919.0660900951 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 331986253.04513544 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1987348.9498364474 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 195466310.43059915 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 80630278.86484602 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 528362339.0915653 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 17379683.837939832 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 96869.51666654828 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 59673798.712930225 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 357221.6021510088 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 35134639.331613705 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 14493115.263101244 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 70 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2842607769.427746 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 93503303.7988045 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 521161.3703779141 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 321047113.5098179 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1921864.6496034728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 189025582.16356662 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 77973464.42393544 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 510809486.5609433 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 16802309.175013054 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 93651.39112095386 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 57691361.07259614 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 345354.2572639944 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 33967423.01569545 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 14011635.990070695 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 71 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2738586442.8181143 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 90081678.83592993 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 502090.1859157266 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 309298835.3932743 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1851536.652696552 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 182108450.63691542 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 75120132.6006148 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 491465570.1017352 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 16166020.16011736 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 90104.89338785782 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 55506638.78695559 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 332275.9882084932 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 32681105.88487253 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 13481027.371437646 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 72 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2625935825.684617 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 86376206.35033397 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 481436.91442655836 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 296575956.12207294 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1775374.460658196 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 174617495.07359102 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 72030097.11212347 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 469964331.0115615 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 15458769.264541293 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 86162.87389801658 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 53078266.21265053 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 317739.1703701333 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 31251332.744881324 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12891242.83651192 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 73 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2506647741.0719676 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 82452404.3629218 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 459566.7351091357 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 283103434.28740734 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1694724.7293088338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 166685166.2164086 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 68757994.17840911 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 446803725.05159914 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 14696935.993511185 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 81916.62745111172 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 50462482.99747938 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 302080.4677040219 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 29711216.2814256 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 12255941.440280436 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 74 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2379819490.372835 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 78280579.9617737 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 436314.1479432675 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 268779318.15841615 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1608977.1512534993 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 158251437.09590587 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 65279062.543803245 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 421758077.5700163 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 13873097.119047098 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 77324.7790420955 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 47633801.208726875 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 285147.3033614174 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 28045749.752139796 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 11568932.868826076 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 75 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2245536746.9510183 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 73863551.24323379 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 411694.8602130056 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 253613283.77498367 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1518189.6495764325 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 149322004.75465128 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 61595652.25077597 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 394646211.10333055 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 12981293.081201432 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 72354.11174383316 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 44571758.47296622 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 266817.18469098856 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 26242885.355045073 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 10825247.377587097 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 76 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 2105520501.6696033 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 69257927.61125739 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 386024.3969676588 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 237799701.65664226 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1423525.772600281 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 140011310.34182188 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 57754970.5226664 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 365914955.28766245 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 12036221.668273289 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 67086.54693428983 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 41326820.19961824 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 247392.20967870875 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 24332336.029437505 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 10037141.61875109 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 77 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: life_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1959083922.049504 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 64441116.74528538 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 359176.8349054366 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 221261000.2202678 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1324521.158313531 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 130273681.39053562 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 53738177.36739079 tonnes. circ_mid
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 335357266.3363977 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 11031072.48655038 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 61484.12537592296 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 37875602.64549554 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 226732.3976565819 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 22300333.934140038 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 9198936.327840075 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 78 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1805724760.735071 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 59396597.97455112 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 331060.09240925784 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 203940455.12086532 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1220836.241247966 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 120075719.8358844 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 49531496.010418765 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 302823852.91776836 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 9960934.822391896 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 55519.47611875965 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 34201244.69044953 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 204736.8139349538 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 20136951.607051585 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 8306536.405110911 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 79 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1646019453.358442 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 54143332.28150599 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 301779.85271379474 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 185903169.6054645 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1112860.744979274 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 109455757.05869274 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 45150738.229843184 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 268492420.493002 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 8831654.029457439 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 49225.17953589697 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 30323816.576317754 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 181525.60377186767 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 17854005.971570194 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 7364816.357207796 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 80 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1481457612.8480675 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 48730318.24122223 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 271609.2202281302 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 167317382.12611946 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 1001601.7850369237 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 98512848.21318437 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 40636764.49256736 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 232814263.3229091 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 7658074.75315501 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 42683.97554591862 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 26294287.95193287 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 157403.8836507685 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 15481506.852228904 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 6386155.302125317 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 81 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1310308917.5888746 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 43100639.52870291 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 240230.959210561 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 147987668.3383473 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 885889.5046505865 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 87131931.68089166 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 35942111.63031817 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 195269086.78995907 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 6423082.685203641 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 35800.4737615932 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 22053896.195546865 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 132019.8864922983 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 12984856.09094449 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 5356281.4242840195 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 82 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 1135215822.7825544 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 37341215.730306655 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 208129.5352243238 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 128212469.91398415 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 767510.4469004982 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 75488723.44986369 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 31139262.870953165 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 156652118.1017316 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 5152835.627597394 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 28720.47048507742 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 17692455.105012495 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 105911.25912733146 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 10416934.10529753 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 4297008.0111328615 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 83 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 954885228.7516917 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 31409512.278556384 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 175067.87243814635 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 107845742.81439057 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 645590.3573132949 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 63497235.95546063 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 26192748.15673938 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 116576048.04748492 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 3834593.6268380783 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 21372.956764238937 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 13166221.57040026 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 78816.14485914144 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 7751985.900235502 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 3197711.071106896 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 84 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 771108458.209719 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 25364452.037759025 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 141374.3904849315 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 87089800.91230604 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 521340.33501985366 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 51276587.22106629 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 21151703.931814503 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 75578894.95008953 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 2486053.985815573 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 13856.572435868144 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 8535959.947394634 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 51098.29362420725 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 5025788.211398482 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 2073148.585595235 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 85 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 583674688.7977773 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 19199100.323755916 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 107010.43736680906 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 65920833.70861661 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 394617.84468934353 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 38812758.14086345 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 16010347.284489097 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 41654907.392956056 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 1370175.4785039283 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 7636.976459910402 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 4704549.085475673 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 28162.55371635213 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 2769936.536657001 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 1142604.8555199893 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 86 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 541258251.8884532 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 17803875.47808761 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 99233.84271173221 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 61130276.678002685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 365940.42688485445 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 35992181.99021735 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 14846853.477883097 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 41654920.67583647 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 1370175.9154242857 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 7636.978895182773 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 4704550.585658167 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 28162.562696802615 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 2769937.4199319384 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 1142605.2198728258 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 87 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 500953793.6608844 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 16478120.992143434 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 91844.45649104803 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 56578248.74270194 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 338690.9011774867 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 33312046.601089396 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 13741291.791345526 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 41654925.63841503 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 1370176.078660837 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 7636.9798050178415 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 4704551.146137012 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 28162.56605196275 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 2769937.749929735 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 1142605.3559976353 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 88 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 473287878.4664393 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 15568092.3553685 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 86772.21035474804 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 53453631.16045556 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 319986.1945405117 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 31472339.490610827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 12982408.600575961 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 41654927.486419365 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 1370176.1394481582 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 7636.980143829439 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 4704551.354852567 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 28162.567301383886 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 2769937.872816931 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 1142605.4066888716 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 89 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 452197757.66976273 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 14874364.57722973 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 82905.56495468837 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 51071690.718947 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 305727.33053158113 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 30069904.5840552 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 12403901.146497197 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 41654928.11806393 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 1370176.1602251553 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 7636.980259634634 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 4704551.426191169 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 28162.56772843378 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 2769937.914819552 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 1142605.4240150445 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 90 PV_ICE
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: life_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 429941374.7770426 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 14142274.362933483 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 78825.0980212005 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 48558031.408744134 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 290679.96593573707 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 28589916.462444384 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 11793402.822262915 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 41654928.31285177 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 1370176.1666324083 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 7636.980295346876 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 4704551.448190712 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 28162.5678601283 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 2769937.927772408 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 1142605.4293581252 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 91 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: life_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 406430660.41854113 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 13368924.803126842 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 74514.66298847455 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 45902706.58252997 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 274784.55774805555 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 27026518.755418587 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 11148497.862341914 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 41654928.36583749 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 1370176.1683752935 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 7636.980305061235 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 4704551.454174976 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 28162.567895951528 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 2769937.9312958117 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 1142605.4308115372 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 92 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 379712340.90829295 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 12490065.900034772 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 69616.14826550975 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 42885111.45426326 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 256720.51306492495 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 25249824.146273278 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 10415607.465641463 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 41636763.68147519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 1369578.6684252112 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 7633.650006770857 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 4702499.915603578 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 28150.28689639803 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 2768730.029849355 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 1142107.1688335293 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 93 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 350786605.0973553 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 11538597.360399228 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 64312.92765359517 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 39618208.405546635 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 237164.05166469404 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 23326342.436986063 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 9622167.07036514 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 41066744.92194057 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 1350828.759339261 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 7529.143236243036 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 4638121.3969197 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 27764.90171756944 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 2730825.353367421 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 1126471.4072115533 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 94 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 319830312.2845469 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 10520336.704641059 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 58637.42639110793 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 36121972.11174462 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 216234.74672168825 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 21267834.283486955 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 8773027.972703991 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 39989086.91193822 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 1315380.8212226531 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 7331.566303072048 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 4516409.566964477 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 27036.305653047162 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 2659164.0658325143 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 1096910.9699933708 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 95 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: life_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 287058768.3494613 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 9442366.09558476 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 52629.11848092178 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 32420719.445522044 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 194078.16483967655 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 19088616.933364976 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 7874096.068477805 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 38457616.12136655 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 1265005.394781514 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 7050.787707976336 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 4343443.643904112 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 26000.89035377339 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 2557325.479141891 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 1054902.331133928 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 96 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_high ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 252461179.52559337 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 8304330.488528256 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 46286.025002763716 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 28513231.347528692 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 170687.00843842118 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 16787972.630896233 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 6925075.281886872 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 36469634.108599335 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 1199613.7188403227 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 6686.3127208876385 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 4118918.8629010557 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 24656.831424688688 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 2425130.1543645756 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 1000371.4716832998 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 97 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 198678686.19520208 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 6535236.325410165 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 36425.58691212609 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 22438979.941201463 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 134325.089706305 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 13211585.054205708 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 5449807.6155453995 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 29685425.969201274 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 976457.4038837351 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 5442.501580679054 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 3352703.254814529 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 20070.08191288879 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 1973999.0110318153 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 814278.8922950361 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 98 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 138970435.17024675 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 4571223.282553531 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 25478.72527975299 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 15695467.223602524 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 93956.81302435767 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 9241150.922791 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 3811994.886972222 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 21419778.40616218 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 704571.3689925122 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 3927.084555036604 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 2419172.318910072 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 14481.742913631118 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 1424356.2290180088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 587550.0473488462 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 99 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low >>>> Calculating Material Flows <<<< Working on Scenario: eff_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_high = 73253083.5953516 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_high = 2409549.9221808827 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_high = 13430.160095090034 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_high = 8273280.364921921 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_high = 49525.8309466649 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_high = 4871128.166470632 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_high = 2009350.9801444006 tonnes. circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_mid = 11651855.705638146 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_mid = 383270.25472228543 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_mid = 2136.241641321686 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_mid = 1315972.8477352008 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_mid = 7877.727565437078 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_mid = 774816.2907777872 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_mid = 319613.40783899557 tonnes. circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 100 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_high >>>> Calculating Material Flows <<<< Working on Scenario: life_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet life_low >>>> Calculating Material Flows <<<< Working on Scenario: life_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high >>>> Calculating Material Flows <<<< Working on Scenario: eff_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_high_bifi >>>> Calculating Material Flows <<<< Working on Scenario: eff_high_bifi ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet eff_low
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: eff_low ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_high >>>> Calculating Material Flows <<<< Working on Scenario: circ_high ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_mid >>>> Calculating Material Flows <<<< Working on Scenario: circ_mid ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_low >>>> Calculating Material Flows <<<< Working on Scenario: circ_low ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1835082948.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim1.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Energy Flows <<<< Working on Scenario: PV_ICE ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: life_high ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: life_low ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: eff_high ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: eff_high_bifi ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: eff_low ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_high ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_mid ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_low ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet
scenarios = sim1.scenario.keys()
materials = sim1.scenario['PV_ICE'].material.keys()
allenergy = pd.DataFrame()
energyGen = pd.DataFrame()
energyFuel = pd.DataFrame()
energy_mod = pd.DataFrame()
scenmatde = pd.DataFrame()
energy_mat = pd.DataFrame()
energy_demands = pd.DataFrame()
for scen in scenarios:
# add the scen name as a prefix
energy_mod_scen = sim1.scenario[scen].dataOut_e.add_prefix(str(scen+'_'))
#concat into one large df
#energy_mod = pd.concat([energy_mod, energy_mod_scen], axis=1)
#material level energy
for mat in materials:
# add the scen name as a prefix
energy_mat_scen = sim1.scenario[scen].material[mat].matdataOut_e.add_prefix(str(scen+'_'+mat+'_'))
scenmatde = pd.concat([scenmatde,energy_mat_scen], axis=1)
#concat into one large df
#energy_mat = pd.concat([energy_mat, scenmatde], axis=1)
#compile module and material energies into one df
allenergy_scen_t = pd.concat([energy_mod_scen,scenmatde], axis=1) #df of mod and mat energy for scenario
for scen in scenarios:
# add the scen name as a prefix \
#energy_mod = pd.DataFrame()
energy_mod = sim1.scenario[scen].dataOut_e.add_prefix(str(scen+'_'))
#concat into one large df
#energy_mod = pd.concat([energy_mod, scende], axis=1)
#material level energy
for mat in materials:
# add the scen name as a prefix
#scenmatde = pd.DataFrame()
energy_mat = sim1.scenario[scen].material[mat].matdataOut_e.add_prefix(str(scen+'_'+mat+'_'))
scenmatde = pd.concat([scenmatde,energy_mat], axis=1)
#concat into one large df
#energy_mat = pd.concat([energy_mat, scenmatde], axis=1)
#compile module and material energies into one df
allenergy_scen = pd.concat([energy_mod,scenmatde], axis=1) #df of mod and mat energy for scenario
#select df to sum the total demand
energyGen_scen = allenergy_scen.filter(like='e_out_annual') #select all columns of energy generation
energyFuel_scen = allenergy_scen.filter(like='_fuel') #select all columns of fuel attributable
energy_demands_1 = allenergy_scen.loc[:,~allenergy_scen.columns.isin(energyGen_scen.columns)] #select all columns that are NOT energy generation, i.e. demands
energy_demands_scen = energy_demands_1.loc[:,~energy_demands_1.columns.isin(energyFuel_scen.columns)] #select all columns that are NOT fuel (this avoids double counting)
colname = str(scen+'_e_demand_total')
energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1)
allenergy = pd.concat([allenergy,allenergy_scen], axis=1)
energyGen = pd.concat([energyGen,energyGen_scen], axis=1)
energyFuel = pd.concat([energyFuel,energyFuel_scen], axis=1)
energy_demands = pd.concat([energy_demands,energy_demands_scen], axis=1)
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\3251266812.py:27: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\3251266812.py:27: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\3251266812.py:27: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\3251266812.py:27: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\3251266812.py:27: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\3251266812.py:27: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\3251266812.py:27: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\3251266812.py:27: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1) C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\3251266812.py:27: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1)
sim1.saveSimulation(customname='_EnergySensitivity_withreplacements')
#aggregate results - mass
cc_yearly, cc_cumu = sim1.aggregateResults() #have to do this to get auto plots
cc_yearly.to_csv(os.path.join(testfolder, 'cc_10scen_yearly.csv'))
cc_cumu.to_csv(os.path.join(testfolder, 'cc_10scen_cumu.csv'))
#aggregate results - energy
allenergy, energyGen, energy_demands = sim1.aggregateEnergyResults()
allenergy.to_csv(os.path.join(testfolder, 'cc_10scen_allenergy.csv'))
energyGen.to_csv(os.path.join(testfolder, 'cc_10scen_energyGen.csv'))
energy_demands.to_csv(os.path.join(testfolder, 'cc_10scen_energy_demands.csv'))
UnderInstall_df.to_csv(os.path.join(testfolder, 'cc_10scen_underInstalls.csv'))
:) Saved Input and Output Dataframes
C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands
scennames_labels
dict_keys(['PV_ICE', 'life_high', 'life_low', 'eff_high', 'eff_high_bifi', 'eff_low', 'circ_high', 'circ_mid', 'circ_low'])
cumu_installs = cc_cumu.filter(like='newInstalled')
total_installed = cumu_installs.loc[2100]
total_installed.index= scennames_labels
plt.bar(scennames_labels, total_installed/1e6)
plt.xticks(rotation=45)
plt.ylabel('Cumulative installed [TW]')
plt.title('Cumulative Installs with Replacements')
#plt.ylim(0,410)
Text(0.5, 1.0, 'Cumulative Installs with Replacements')
cumu_area_deployed = pd.DataFrame()
for scen in sim1.scenario.keys():
area_deploy = sim1.scenario[scen].dataOut_m['Area'].cumsum()
cumu_area_deployed = pd.concat([cumu_area_deployed,area_deploy], axis=1)
cumu_area_deployed.columns = sim1.scenario.keys()
cumu_area_deployed_total = cumu_area_deployed.iloc[-1,:]
#cumu_area_deployed
plt.bar(scennames_labels, cumu_area_deployed.iloc[-1,:]/1e12)
plt.xticks(rotation=45)
plt.ylabel('Cumulative installed Area [m2 1e12]')
plt.title('Cumulative Area Deployed with Replacements')
#plt.ylim(0,410)
Text(0.5, 1.0, 'Cumulative Area Deployed with Replacements')
cumu_virgin_module = cc_cumu.filter(like='VirginStock_Module')
virgin = cumu_virgin_module.loc[2100]
virgin.index= scennames_labels
plt.bar(scennames_labels, virgin/1e9)
#plt.legend(scennames)
plt.title('Cumulative Virgin Material Demands')
plt.ylabel('Virgin Material Requirements\n[billion tonnes]')
#plt.xticks(rotation=90)
Text(0, 0.5, 'Virgin Material Requirements\n[billion tonnes]')
cumu_lifecycle_wastes = cc_cumu.filter(like='WasteAll_Module')
wastes = cumu_lifecycle_wastes.loc[2100]
wastes.index= scennames_labels
plt.bar(scennames_labels, wastes/1e9)
#plt.legend(scennames)
plt.title('Cumulative Lifecycle Wastes')
plt.ylabel('Lifecycle Wastes\n[billion tonnes]')
Text(0, 0.5, 'Lifecycle Wastes\n[billion tonnes]')
allenergy = pd.DataFrame() energyGen = pd.DataFrame() energyFuel = pd.DataFrame() energy_mod=pd.DataFrame() energy_mat = pd.DataFrame() energy_demands = pd.DataFrame()
for scen in scenarios:
# add the scen name as a prefix
scende = sim1.scenario[scen].dataOut_e.add_prefix(str(scen+'_'))
#concat into one large df
#energy_mod = pd.concat([energy_mod, scende], axis=1)
#material level energy
for mat in materials:
# add the scen name as a prefix
scenmatde = sim1.scenario[scen].material[mat].matdataOut_e.add_prefix(str(scen+'_'+mat+'_'))
#concat into one large df
#energy_mat = pd.concat([energy_mat, scenmatde], axis=1)
#compile module and material energies into one df
allenergy_scen = pd.concat([scende,scenmatde], axis=1) #df of mod and mat energy for scenario
#select df to sum the total demand
energyGen_scen = allenergy_scen.filter(like='e_out_annual') #select all columns of energy generation
energyFuel_scen = allenergy_scen.filter(like='_fuel') #select all columns of fuel attributable
energy_demands_1 = allenergy_scen.loc[:,~allenergy_scen.columns.isin(energyGen_scen.columns)] #select all columns that are NOT energy generation, i.e. demands
energy_demands_scen = energy_demands_1.loc[:,~energy_demands_1.columns.isin(energyFuel_scen.columns)] #select all columns that are NOT fuel (this avoids double counting)
colname = str(scen+'_e_demand_total')
energy_demands_scen.loc[:,colname] = energy_demands_scen.sum(axis=1)
allenergy = pd.concat([allenergy,allenergy_scen], axis=1)
energyGen = pd.concat([energyGen,energyGen_scen], axis=1)
energyFuel = pd.concat([energyFuel,energyFuel_scen], axis=1)
energy_demands = pd.concat([energy_demands,energy_demands_scen], axis=1)
allenergy.index = sim1.scenario[scen].dataIn_e['year'] energyGen.index = sim1.scenario[scen].dataIn_e['year'] energyFuel.index = sim1.scenario[scen].dataIn_e['year'] energy_demands.index = sim1.scenario[scen].dataIn_e['year']
energy_demands = pd.concat([energy_demands,energyFuel], axis=1) #append fuel energy columns back onto energy demands
return allenergy, energyGen, energy_demands #note, all these are annual
e_annual_sumDemands = energy_demands.filter(like='demand_total')
e_annual_sumDemands_cumu = e_annual_sumDemands.cumsum()
cumu_e_demands = e_annual_sumDemands_cumu.loc[2100]
cumu_e_demands.index= scennames_labels
plt.bar(scennames_labels, cumu_e_demands/1e12)
plt.title('Cumulative Lifecycle Energy Demands')
plt.ylabel('Cumulative Energy Demands\n[TWh]')
Text(0, 0.5, 'Cumulative Energy Demands\n[TWh]')
e_demands_eff_high = energy_demands.filter(like='eff_high')
e_demands_eff_high_cumu = e_demands_eff_high.cumsum()
e_demands_eff_high_cumu
#plt.bar(e_demands_eff_high_cumu.columns, e_demands_eff_high_cumu.iloc[-1,:])
| eff_high_mod_MFG | eff_high_mod_Install | eff_high_mod_OandM | eff_high_mod_Repair | eff_high_mod_Demount | eff_high_mod_Store | eff_high_mod_Resell_Certify | eff_high_mod_ReMFG_Disassembly | eff_high_mod_Recycle_Crush | eff_high_glass_mat_extraction | ... | eff_high_bifi_copper_mat_Landfill_fuel | eff_high_bifi_copper_mat_Recycled_HQ_fuel | eff_high_bifi_encapsulant_mat_MFG_virgin_fuel | eff_high_bifi_encapsulant_mat_MFGScrap_HQ_fuel | eff_high_bifi_encapsulant_mat_Landfill_fuel | eff_high_bifi_encapsulant_mat_Recycled_HQ_fuel | eff_high_bifi_backsheet_mat_MFG_virgin_fuel | eff_high_bifi_backsheet_mat_MFGScrap_HQ_fuel | eff_high_bifi_backsheet_mat_Landfill_fuel | eff_high_bifi_backsheet_mat_Recycled_HQ_fuel | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| year | |||||||||||||||||||||
| 2000 | 5.595432e+10 | 5.724557e+07 | 0.0 | 0.0 | 0.000000e+00 | 0.0 | 0.0 | 0.0 | 0.000000e+00 | 5.347604e+08 | ... | 0.0 | 0.0 | 5.968542e+09 | 0.0 | 0.0 | 0.0 | 1.131697e+10 | 0.0 | 0.0 | 0.0 |
| 2001 | 7.599869e+10 | 7.752961e+07 | 0.0 | 0.0 | 3.657513e-01 | 0.0 | 0.0 | 0.0 | 1.547705e+00 | 7.242440e+08 | ... | 0.0 | 0.0 | 8.196241e+09 | 0.0 | 0.0 | 0.0 | 1.555949e+10 | 0.0 | 0.0 | 0.0 |
| 2002 | 1.003605e+11 | 1.019176e+08 | 0.0 | 0.0 | 2.862575e+01 | 0.0 | 0.0 | 0.0 | 1.211321e+02 | 9.520647e+08 | ... | 0.0 | 0.0 | 1.087936e+10 | 0.0 | 0.0 | 0.0 | 2.070531e+10 | 0.0 | 0.0 | 0.0 |
| 2003 | 1.376869e+11 | 1.388866e+08 | 0.0 | 0.0 | 3.744197e+02 | 0.0 | 0.0 | 0.0 | 1.584386e+03 | 1.297412e+09 | ... | 0.0 | 0.0 | 1.502408e+10 | 0.0 | 0.0 | 0.0 | 2.872989e+10 | 0.0 | 0.0 | 0.0 |
| 2004 | 2.141538e+11 | 2.138242e+08 | 0.0 | 0.0 | 2.361542e+03 | 0.0 | 0.0 | 0.0 | 9.993052e+03 | 1.997442e+09 | ... | 0.0 | 0.0 | 2.354653e+10 | 0.0 | 0.0 | 0.0 | 4.540641e+10 | 0.0 | 0.0 | 0.0 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 2096 | 2.084757e+15 | 5.842628e+12 | 0.0 | 0.0 | 2.900146e+12 | 0.0 | 0.0 | 0.0 | 1.227219e+13 | 6.622589e+13 | ... | 0.0 | 0.0 | 4.745288e+14 | 0.0 | 0.0 | 0.0 | 1.490753e+15 | 0.0 | 0.0 | 0.0 |
| 2097 | 2.106728e+15 | 5.904238e+12 | 0.0 | 0.0 | 2.949143e+12 | 0.0 | 0.0 | 0.0 | 1.247953e+13 | 6.692494e+13 | ... | 0.0 | 0.0 | 4.796983e+14 | 0.0 | 0.0 | 0.0 | 1.506818e+15 | 0.0 | 0.0 | 0.0 |
| 2098 | 2.130099e+15 | 5.969776e+12 | 0.0 | 0.0 | 3.002774e+12 | 0.0 | 0.0 | 0.0 | 1.270647e+13 | 6.766857e+13 | ... | 0.0 | 0.0 | 4.850310e+14 | 0.0 | 0.0 | 0.0 | 1.523389e+15 | 0.0 | 0.0 | 0.0 |
| 2099 | 2.154891e+15 | 6.039297e+12 | 0.0 | 0.0 | 3.061103e+12 | 0.0 | 0.0 | 0.0 | 1.295330e+13 | 6.845738e+13 | ... | 0.0 | 0.0 | 4.907076e+14 | 0.0 | 0.0 | 0.0 | 1.541029e+15 | 0.0 | 0.0 | 0.0 |
| 2100 | 2.181460e+15 | 6.113803e+12 | 0.0 | 0.0 | 3.125324e+12 | 0.0 | 0.0 | 0.0 | 1.322506e+13 | 6.930273e+13 | ... | 0.0 | 0.0 | 4.968002e+14 | 0.0 | 0.0 | 0.0 | 1.559962e+15 | 0.0 | 0.0 | 0.0 |
101 rows × 188 columns
energyGen_cumu = energyGen.cumsum()
energyGen_cumu.columns = e_annual_sumDemands_cumu.columns = scennames_labels
netEnergy_cumu = energyGen_cumu.loc[[2100]] - e_annual_sumDemands_cumu.loc[[2100]]
#netEnergy_cumu.index= scennames_labels
plt.bar(scennames_labels, netEnergy_cumu.loc[2100]/1e12)
plt.title('Net Energy Cumulatively')
plt.ylabel('Cumulative Net Energy [TWh]')
Text(0, 0.5, 'Cumulative Net Energy [TWh]')
netEnergy_cumu_norm = netEnergy_cumu/netEnergy_cumu.loc[2100,'PV_ICE']
netEnergy_cumu_norm_waterfall = netEnergy_cumu_norm-1
plt.bar(scennames_labels, netEnergy_cumu_norm_waterfall.loc[2100])
plt.title('Net Energy Cumulatively Relative to PV ICE')
plt.ylabel('Relative Cumulative Net Energy')
#plt.ylim(-0.026,0.005)
plt.plot(0.0, lw=2)
plt.xticks(rotation=90)
([0, 1, 2, 3, 4, 5, 6, 7, 8], [Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, '')])
energyBalance_allyears = energyGen_cumu/e_annual_sumDemands_cumu
energyBalance = energyBalance_allyears.loc[2100]
energyBalance.index = scennames_labels
plt.bar(scennames_labels, energyBalance)
plt.title('Energy Balance')
plt.ylabel('Unitless')
Text(0, 0.5, 'Unitless')
discussTable = pd.concat([total_installed,cumu_area_deployed_total,virgin,wastes,
cumu_e_demands, netEnergy_cumu.loc[2100].T, energyBalance],
axis=1, keys=['replacements','area','virgin','wastes','energydemand','netenergy','energybalance'])
#discussTable.to_csv(os.path.join(testfolder,'discussiontable.csv'))
discussTable
| replacements | area | virgin | wastes | energydemand | netenergy | energybalance | |
|---|---|---|---|---|---|---|---|
| PV_ICE | 1.906612e+08 | 7.728509e+11 | 1.008632e+10 | 5.139612e+09 | 1.467115e+17 | 7.041318e+18 | 48.994305 |
| life_high | 1.732992e+08 | 7.033519e+11 | 9.180273e+09 | 4.394466e+09 | 1.335581e+17 | 7.054472e+18 | 53.819491 |
| life_low | 2.593475e+08 | 1.047702e+12 | 1.366772e+10 | 8.777769e+09 | 1.987961e+17 | 6.989234e+18 | 36.157805 |
| eff_high | 1.906612e+08 | 6.435582e+11 | 8.398524e+09 | 4.276345e+09 | 1.222332e+17 | 7.065796e+18 | 58.805872 |
| eff_high_bifi | 1.752295e+08 | 5.914535e+11 | 7.718548e+09 | 3.929078e+09 | 1.123348e+17 | 7.735658e+18 | 69.862551 |
| eff_low | 1.906612e+08 | 9.678296e+11 | 1.263162e+10 | 6.447753e+09 | 1.836305e+17 | 7.004399e+18 | 39.143994 |
| circ_high | 1.906612e+08 | 7.728509e+11 | 4.746508e+09 | 3.423740e+06 | 1.734309e+17 | 7.014599e+18 | 41.446065 |
| circ_mid | 1.906612e+08 | 7.728509e+11 | 8.469434e+09 | 3.726350e+09 | 1.903153e+17 | 6.997714e+18 | 37.769062 |
| circ_low | 1.906612e+08 | 7.728509e+11 | 1.011723e+10 | 5.374146e+09 | 1.441579e+17 | 7.043872e+18 | 49.862190 |
discussTable_norm = (discussTable/discussTable.loc['PV_ICE'])*100-100
discussTable_norm
| replacements | area | virgin | wastes | energydemand | netenergy | energybalance | |
|---|---|---|---|---|---|---|---|
| PV_ICE | 0.000000e+00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
| life_high | -9.106160e+00 | -8.992551 | -8.982934 | -14.498109 | -8.965499 | 0.186803 | 9.848463 |
| life_low | 3.602537e+01 | 35.563336 | 35.507452 | 70.786595 | 35.501328 | -0.739699 | -26.199985 |
| eff_high | -4.263256e-14 | -16.729327 | -16.733513 | -16.796343 | -16.684673 | 0.347639 | 20.025934 |
| eff_high_bifi | -8.093759e+00 | -23.471200 | -23.475082 | -23.553026 | -23.431541 | 9.860938 | 42.593206 |
| eff_low | -2.842171e-14 | 25.228496 | 25.235163 | 25.452119 | 25.164299 | -0.524318 | -20.105013 |
| circ_high | 0.000000e+00 | 0.000000 | -52.941136 | -99.933385 | 18.212201 | -0.379466 | -15.406363 |
| circ_mid | 0.000000e+00 | 0.000000 | -16.030489 | -27.497454 | 29.720734 | -0.619255 | -22.911321 |
| circ_low | 0.000000e+00 | 0.000000 | 0.306455 | 4.563261 | -1.740566 | 0.036266 | 1.771398 |
Now, what happens when we combine these?
#load in a baseline and materials for modification
sim2 = PV_ICE.Simulation(name='sim1', path=testfolder)
sim2.createScenario(name='PV_ICE', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim2.scenario['PV_ICE'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
path = C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\TEMP\EnergyAnalysis\Sensitivity Baseline folder directed to default: C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\baselines
mod_circ_vars = ['mod_EOL_collection_eff', 'mod_EOL_pg4_recycled', 'mod_EOL_pb4_recycled']
mat_circ_vars = ['mat_MFG_scrap_Recycled', 'mat_MFG_scrap_Recycling_eff', 'mat_MFG_scrap_Recycled_into_HQ',
'mat_MFG_scrap_Recycled_into_HQ_Reused4MFG', 'mat_PG4_Recycling_target', 'mat_Recycling_yield',
'mat_EOL_Recycled_into_HQ', 'mat_EOL_RecycledHQ_Reused4MFG']
#Life+Eff
sim2.createScenario(name='good_eff_life', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim2.scenario['good_eff_life'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
#Lifetime and Degradation
#degradation rate:
sim2.modifyScenario('good_eff_life', 'mod_degradation',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_degradation']-0.1, start_year=2022) #standard current degrdation
#T50
sim2.modifyScenario('good_eff_life', 'mod_reliability_t50',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t50']+10, start_year=2022)
#t90
sim2.modifyScenario('good_eff_life', 'mod_reliability_t90',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t90']+10, start_year=2022)
#Mod Project Lifetime
sim2.modifyScenario('good_eff_life', 'mod_lifetime',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_lifetime']+10, start_year=2022) #
sim2.modifyScenario('good_eff_life', 'mod_eff',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_eff']+5, start_year=2022) #
#Eff+Circ
sim2.createScenario(name='good_eff_circ', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim2.scenario['good_eff_circ'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
for var in range(0,len(mod_circ_vars)):
sim2.modifyScenario('good_eff_circ', mod_circ_vars[var], 100.0, start_year=2022) #
for mat in range (0, len(MATERIALS)):
for mvar in range(0,len(mat_circ_vars)):
sim2.scenario['good_eff_circ'].modifyMaterials(MATERIALS[mat], mat_circ_vars[mvar],100.0, start_year=2022) #
sim2.scenario['good_eff_circ'].modifyMaterials(MATERIALS[mat], 'mat_PG4_Recycling_target',25.0, start_year=2022) #
sim2.modifyScenario('good_eff_circ', 'mod_eff',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_eff']+5, start_year=2022) #
#Life+Circ
sim2.createScenario(name='good_life_circ', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim2.scenario['good_life_circ'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
#Lifetime and Degradation
#degradation rate:
sim2.modifyScenario('good_life_circ', 'mod_degradation',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_degradation']-0.1, start_year=2022) #standard current degrdation
#T50
sim2.modifyScenario('good_life_circ', 'mod_reliability_t50',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t50']+10, start_year=2022)
#t90
sim2.modifyScenario('good_life_circ', 'mod_reliability_t90',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t90']+10, start_year=2022)
#Mod Project Lifetime
sim2.modifyScenario('good_life_circ', 'mod_lifetime',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_lifetime']+10, start_year=2022) #
for var in range(0,len(mod_circ_vars)):
sim2.modifyScenario('good_life_circ', mod_circ_vars[var], 100.0, start_year=2022) #
for mat in range (0, len(MATERIALS)):
for mvar in range(0,len(mat_circ_vars)):
sim2.scenario['good_life_circ'].modifyMaterials(MATERIALS[mat], mat_circ_vars[mvar],100.0, start_year=2022) #
sim2.scenario['good_life_circ'].modifyMaterials(MATERIALS[mat], 'mat_PG4_Recycling_target',25.0, start_year=2022) #
#life eff
sim2.createScenario(name='bad_life_eff', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim2.scenario['bad_life_eff'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
#Lifetime and Degradation
#degradation rate:
sim2.modifyScenario('bad_life_eff', 'mod_degradation',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_degradation']+0.1, start_year=2022) #standard current degrdation
#T50
sim2.modifyScenario('bad_life_eff', 'mod_reliability_t50',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t50']-10, start_year=2022)
#t90
sim2.modifyScenario('bad_life_eff', 'mod_reliability_t90',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t90']-10, start_year=2022)
#Mod Project Lifetime
sim2.modifyScenario('bad_life_eff', 'mod_lifetime',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_lifetime']-10, start_year=2022) #project lifetime of 25 years
#eff -5
sim2.modifyScenario('bad_life_eff', 'mod_eff',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_eff']-5, start_year=2022) #
#eff circ
sim2.createScenario(name='bad_eff_circ', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim2.scenario['bad_eff_circ'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
sim2.modifyScenario('bad_eff_circ', 'mod_eff',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_eff']-5, start_year=2022) #
#sim2.scenMod_noCircularity(scenarios='bad_life_eff')
for var in range(0,len(mod_circ_vars)):
sim2.modifyScenario('bad_eff_circ', mod_circ_vars[var],0.0, start_year=2022) #
sim2.modifyScenario('bad_eff_circ','mod_EOL_pb1_landfill',100.0,start_year=2022)
sim2.modifyScenario('bad_eff_circ','mod_EOL_pg1_landfill',100.0,start_year=2022)
for mat in range (0, len(MATERIALS)):
for mvar in range(0,len(mat_circ_vars)):
sim2.scenario['bad_eff_circ'].modifyMaterials(MATERIALS[mat], mat_circ_vars[mvar],0.0, start_year=2022) #
#life circ
sim2.createScenario(name='bad_life_circ', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim2.scenario['bad_life_circ'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
#degradation rate:
sim2.modifyScenario('bad_life_circ', 'mod_degradation',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_degradation']+0.1, start_year=2022) #standard current degrdation
#T50
sim2.modifyScenario('bad_life_circ', 'mod_reliability_t50',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t50']-10, start_year=2022)
#t90
sim2.modifyScenario('bad_life_circ', 'mod_reliability_t90',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_reliability_t90']-10, start_year=2022)
#Mod Project Lifetime
sim2.modifyScenario('bad_life_circ', 'mod_lifetime',
sim2.scenario['PV_ICE'].dataIn_m.loc[timeshift:,'mod_lifetime']-10, start_year=2022)
#0 circ
#sim2.scenMod_noCircularity(scenarios='bad_life_circ') #sets all years to 0.0
for var in range(0,len(mod_circ_vars)):
sim2.modifyScenario('bad_life_circ', mod_circ_vars[var],0.0, start_year=2022) #
sim2.modifyScenario('bad_life_circ','mod_EOL_pb1_landfill',100.0,start_year=2022)
sim2.modifyScenario('bad_life_circ','mod_EOL_pg1_landfill',100.0,start_year=2022)
for mat in range (0, len(MATERIALS)):
for mvar in range(0,len(mat_circ_vars)):
sim2.scenario['bad_life_circ'].modifyMaterials(MATERIALS[mat], mat_circ_vars[mvar],0.0, start_year=2022) #
#trim to start in 2000, this trims module and materials
#had to specify and end year, cannot use to extend
sim2.trim_Years(startYear=2000, endYear=2100)
Trimming and extending PV_ICE PV_ICE glass : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE silicon : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE silver : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE copper : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending good_eff_life good_eff_life glass : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_life silicon : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_life silver : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_life aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_life copper : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_life encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_life backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_life backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending good_eff_circ good_eff_circ glass : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_circ silicon : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_circ silver : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_circ aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_circ copper : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_circ encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_circ backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 good_eff_circ backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending good_life_circ good_life_circ glass : Data trimmed for Energy, years now encompass 2000 to 2100 good_life_circ silicon : Data trimmed for Energy, years now encompass 2000 to 2100 good_life_circ silver : Data trimmed for Energy, years now encompass 2000 to 2100 good_life_circ aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 good_life_circ copper : Data trimmed for Energy, years now encompass 2000 to 2100 good_life_circ encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 good_life_circ backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 good_life_circ backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending bad_life_eff bad_life_eff glass : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_eff silicon : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_eff silver : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_eff aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_eff copper : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_eff encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_eff backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_eff backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending bad_eff_circ bad_eff_circ glass : Data trimmed for Energy, years now encompass 2000 to 2100 bad_eff_circ silicon : Data trimmed for Energy, years now encompass 2000 to 2100 bad_eff_circ silver : Data trimmed for Energy, years now encompass 2000 to 2100 bad_eff_circ aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 bad_eff_circ copper : Data trimmed for Energy, years now encompass 2000 to 2100 bad_eff_circ encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 bad_eff_circ backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 bad_eff_circ backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending bad_life_circ bad_life_circ glass : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_circ silicon : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_circ silver : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_circ aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_circ copper : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_circ encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_circ backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 bad_life_circ backsheet : Data trimmed for Mass, years now encompass 2000 to 2100
global_projection = pd.read_csv(os.path.join(supportMatfolder,'output-globalInstallsProjection.csv'), index_col=0)
global_projection.iloc[-1,:]
#fig, ax1 = plt.subplots()
#ax1.stackplot(global_projection.index, global_projection['World_cum']/1e6, color='#F7A11A')
#ax1.set_ylabel('Cumulative Solar Capacity [TW]', color='#F7A11A')
#ax1.set_ylim(0,90)
#ax1.set_xlim(2000,2100)
#ax2 = ax1.twinx()
#ax2.plot(global_projection['World_annual_[MWdc]']/1e6)
#ax2.set_ylabel('Annual Installations [TW]')
#ax2.set_ylim(0,5)
#plt.show()
#fig.savefig('energyresults-deployment.png', dpi=300, bbox_inches='tight')
World_cum 85966000.0 World_annual_[MWdc] 219320.0 Name: 2100, dtype: float64
#deployment projection for all scenarios
sim2.modifyScenario(scenarios=None,stage='new_Installed_Capacity_[MW]',
value= global_projection['World_annual_[MWdc]'], start_year=2000)
sim2.scenario.keys()
dict_keys(['PV_ICE', 'good_eff_life', 'good_eff_circ', 'good_life_circ', 'bad_life_eff', 'bad_eff_circ', 'bad_life_circ'])
bifiFactors = {'PV_ICE':0.0,
'good_eff_life':0.9,
'good_eff_circ': 0.9,
'good_life_circ': 0.0,
'bad_life_eff': 0.0,
'bad_eff_circ':0.0,
'bad_life_circ': 0.0
}
#PV ICE currently set up to read in a csv of bifi factors, so generate files to read in
idx_temp = pd.RangeIndex(start=2000,stop=2101,step=1) #create the index
df_temp = pd.DataFrame(index=idx_temp, columns=['bifi'], dtype=float)
bifiPathDict={}
for f in bifiFactors.keys(): #loop over module types
bifi = df_temp.copy() #copy of df
bifi['bifi'] = bifiFactors[f] #assign column
bifipath = os.path.join(testfolder,'bifi_'+str(f)+'.csv') #create file path
bifi.to_csv(path_or_buf=bifipath, index_label='year') #create file
bifiPathDict[str(f)] = bifipath
#append bifi path to dict? or list?
#CALCULATE MASS FLOW=
for scen in sim2.scenario.keys(): #loop over scenarios
sim2.calculateMassFlow(scenarios=[scen], bifacialityfactors=bifiPathDict[scen])
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet
#sim1.calculateMassFlow()
ii_yearly2, ii_cumu2 = sim2.aggregateResults() #have to do this to get auto plots
sim2.saveSimulation(customname='_EnergySensitivity-goodbad_identicalinstalls')
:) Saved Input and Output Dataframes
effective_capacity = ii_yearly2.filter(like='ActiveCapacity')
plt.plot(ii_cumu2['newInstalledCapacity_sim1_PV_ICE_[MW]']/1e6, label='Capacity Target', color='black', ls='--')
plt.plot(effective_capacity/1e6, label=sim2.scenario.keys())
plt.legend()
plt.ylabel('Effective Capacity [TW]')
plt.title('Effective Capacity: No Replacements')
plt.ylim(0,)
(0.0, 90.26425956655)
## Calculate Flows: Capacity Compensation
UnderInstall_df = pd.DataFrame()
for row in range (0,len(sim2.scenario['PV_ICE'].dataIn_m)): #loop over length of years
print(row)
for scen in sim2.scenario.keys(): #loop over scenarios
print(scen)
Under_Installment = global_projection.iloc[row,0] - ((sim2.scenario[scen].dataOut_m['Effective_Capacity_[W]'][row])/1e6) # MWATTS
sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
UnderInstall_df.loc[row,scen] = Under_Installment #save the underinstallment as df
#calculate flows for that scenario with it's bifi factor and modified weibull
sim2.calculateMassFlow(scenarios=[scen], bifacialityfactors=bifiPathDict[scen])
sim2.calculateEnergyFlow()
0 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 1 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 2 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 3 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 4 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 5 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 6 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 7 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 8 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 9 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 10 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 11 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 12 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 13 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 14 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 15 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 16 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 17 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 18 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 19 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 20 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 21 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 22 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 23 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 24 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 25 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 26 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352582643.1300519 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11627565.469418474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65412.32638255321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39910337.86350069 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239908.727872841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23437294.579840444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9842645.002890877 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492415492.96914035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16233488.131774146 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91212.2117321412 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55722105.60383685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334772.7185564503 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32734035.070287634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13714479.678606484 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 27 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352057672.65665066 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11609281.749626575 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65293.42158635944 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39848356.9803083 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239506.42627605455 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23401611.980860244 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9824494.027550938 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492626872.35266876 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16240850.07232897 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91260.0887534052 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55747062.20910052 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 334934.70531157247 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32748402.67029047 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13721788.16960206 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 28 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 351457903.4554208 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11588932.085745016 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65167.12492277535 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39778845.27520384 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239067.87120970638 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23361976.889882185 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9804931.253656223 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 492912257.0748421 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16250532.935605798 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91320.18376691118 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55780137.563100636 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 335143.38044112374 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32767262.007188555 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13731096.61155179 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 29 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 350798951.2057569 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11567150.509914473 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65038.59318485888 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39703859.699626476 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 238608.625813155 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23318749.949100427 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9784801.492744084 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 493291877.2727612 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16263081.228948748 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91394.23047334797 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55823336.50362518 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 335407.9501856252 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32792164.903905842 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13742693.299817787 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 30 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 350105225.3415382 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11544275.567549726 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 64911.980034493616 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39625213.18305355 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 238141.71987635177 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23272932.58505752 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9764687.66999191 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 493775485.0316679 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16279027.729119377 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91482.49459186288 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55878162.28941087 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 335733.4380265203 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32824104.945191115 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13756714.977898333 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 31 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 349307187.36770207 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11518025.309630536 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 64765.66840876348 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39535081.93430132 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 237602.17270862364 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23219865.25926766 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9742797.282499446 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 494274054.8802708 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16295427.433827221 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91573.9019778278 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 55934471.29288946 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 336070.5171612829 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32857258.46601623 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13770390.877461752 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 32 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 348565147.69752437 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11493617.031619899 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 64629.623465967015 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39451275.19290615 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 237100.4855514802 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23170521.666334316 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9722442.942922235 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 494975392.335835 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16318496.87375432 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91702.48461007497 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 56013681.08332445 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 336544.68587276957 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32903895.47385704 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13789628.744792152 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 33 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 347672882.43578154 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11464267.308898687 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 64466.03628677483 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39350501.81507736 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 236497.23205901615 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23111188.48559823 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9697967.876614645 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 495642203.30860275 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16340430.617000094 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91824.73718536453 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 56088991.41645101 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 336995.5115020783 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32948236.565750223 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13807919.541792633 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 34 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 346922785.65148145 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11439594.004246797 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 64328.51415930219 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39265785.09473256 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 235990.0975506848 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23061309.116781935 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9677392.528318558 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 496602411.074814 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16372015.206136746 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 92000.78088744268 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 56197438.2922484 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 337644.7003849074 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 33012087.735777315 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13834258.288524948 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 35 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 346112478.30199444 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11412940.163683793 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 64179.9530763319 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39174268.12978 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 235442.25515503605 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23007425.91132688 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9655165.588686856 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 497637419.129132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16406060.238159083 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 92190.53841281845 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 56314333.191316776 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 338344.46115142683 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 33080912.91880664 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13862648.826456282 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 36 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 345132279.0834233 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11380697.985813484 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 64000.24415782124 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39063563.398310766 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 234779.55020924608 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22942245.364816245 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9628278.47125911 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 498590604.56792414 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16437413.838405488 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 92365.2946471635 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 56421986.958063975 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 338988.9022941807 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 33144297.123414576 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13888794.948935935 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 37 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 344378056.7286517 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11355888.976730863 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 63861.9656516517 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 38978380.7316945 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 234269.62643532074 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22892091.656934075 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9607589.957500719 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 499924416.9651115 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16481287.589517457 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 92609.83471499186 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 56572629.13412713 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 339890.682315655 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 33232991.971710894 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13925381.767074842 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 38 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 343391020.28654957 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11323421.898684094 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 63681.003202202504 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 38866903.797003046 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 233602.29889673163 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22826456.453902677 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9580515.293267716 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 501123611.8563834 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16520733.300402552 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 92829.69412000966 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 56708067.467378445 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 340701.4485051755 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 33312735.126882765 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13958275.992299158 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 39 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 342447911.6176693 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11292399.758616082 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 63508.094434564875 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 38760388.11125614 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 232964.6705784848 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22763742.32672132 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9554645.579186253 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 502469231.8705496 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16564995.445301874 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 93076.39898662305 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 56860043.20813149 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 341611.2115631811 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 33402215.149165235 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13995186.69641781 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 40 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 341723474.1247562 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11268570.47773125 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 63375.27666047016 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 38678569.37828867 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 232474.88411429126 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22715569.23006276 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9534774.07187225 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 504197259.5588176 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16621836.31502953 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 93393.2141616727 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 57055208.47410668 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 342779.5174277243 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 33517124.22782275 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14042586.941686915 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 41 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 340818085.6490291 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11238789.086639477 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 63209.28348202003 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 38576313.850859456 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 231862.7581205567 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22655363.391765572 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9509939.032419669 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 505839843.18865085 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16675866.631067878 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 93694.36409332739 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 57240723.598186776 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 343890.0552395693 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 33626351.51208647 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14087643.434391122 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 42 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 339987178.37381744 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11211457.642527372 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 63056.945625611 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 38482470.308612786 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 231300.9882779136 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22600110.348025233 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9487147.03151117 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 507656035.3006775 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16735607.536807397 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 94027.34326131293 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 57445846.24698007 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 345117.96837430855 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 33747123.28193421 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14137462.052547732 tonnes. bad_life_eff
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 43 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 339389546.1191311 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11191799.429083047 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 62947.37621959437 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 38414973.09272147 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 230896.9338332247 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22560369.45022119 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9470753.82459372 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 509857424.7798721 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16808018.930129547 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 94430.94419776698 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 57694473.49186676 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 346606.3104050225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 33893509.61505722 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14197846.733855266 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 44 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 338906379.0744103 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11175906.376424154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 62858.79277102429 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 38360403.69812579 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 230570.26841244847 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22528240.17340261 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9457500.427914256 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 512309326.2055074 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16888670.536851935 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 94880.47378843326 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 57971393.819664665 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 348264.02158308955 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 34056554.30218326 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14265103.02247832 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 45 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 338203443.47750384 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11152784.368043175 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 62729.917136857905 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 38281013.41192545 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 230095.01921022922 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22481496.89356717 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9438218.723154565 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 514585187.7206284 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16963531.575698398 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 95297.72836670018 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 58228432.01467557 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 349802.71356878866 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 34207892.82044322 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14327530.49094289 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 46 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 337895632.0695958 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11142659.375106793 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 62673.483246509546 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 38246248.86752469 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 229886.91034977883 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22461028.283299454 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9429775.376829434 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 517377020.41092014 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 17055364.709697157 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 95809.58067583224 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 58543744.53730368 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 351690.24958863104 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 34393541.99978528 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14404111.18184766 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 47 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 337338138.68466055 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11124321.46936473 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 62571.272867858555 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 38183284.97783185 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 229509.99347773692 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22423956.50970723 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9414483.189463893 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 519959216.50822586 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 17140302.163520787 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 96282.9983844341 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 58835380.48246371 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 353436.0519645794 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 34565250.923472635 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14474941.486926798 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 48 PV_ICE
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 337145668.42153835 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11117990.449771209 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 62535.985528126155 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 38161547.18372727 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 229379.86585380905 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22411157.767676365 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9409203.680494828 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 522983314.7059938 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 17239775.32177514 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 96837.4340606665 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 59176925.31598084 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 355480.6208585811 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 34766345.118915565 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14557893.280619254 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 49 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 337041509.4659269 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11114564.29770948 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 62516.889110875985 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 38149783.3616464 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 229309.4448070216 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22404231.484200414 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9406346.573472483 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 526161954.5071769 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 17344331.893453274 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 97420.20326735724 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 59535924.24085277 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 357629.67410940863 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 34977715.90505391 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14645084.19036054 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 50 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 337476870.2471232 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11128884.835289123 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 62596.70779841257 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 38198953.466520414 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 229603.78879081132 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22433181.776253324 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9418288.632010873 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 529983237.6620214 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 17470027.2509245 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 98120.79417792869 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 59967503.98251145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 360213.2134532485 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 35231820.703023195 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14749902.973075697 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 51 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 341788559.2446586 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11270711.35478241 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 63387.209312819985 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 38685920.16023682 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 232518.88764953124 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22719897.211155355 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9536559.373501204 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 534033074.78506374 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 17603240.54715345 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 98863.28798504191 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 60424896.849906385 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 362951.2763288712 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 35501123.70996066 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14860991.050098661 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 52 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 345138797.538683 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11380912.400587486 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 64001.439246047084 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39064299.59950892 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 234783.95728533607 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22942678.824125536 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9628457.27416846 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 537179897.683109 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 17706750.549694598 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 99440.2239068811 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 60780302.34024861 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 365078.8184229159 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 35710378.75973084 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14947309.213979064 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 53 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 348753886.48107624 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11499825.309809681 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 64664.22667930415 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39472591.54978042 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 237228.09035155794 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23183072.275258075 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9727620.09644407 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 540353445.7151037 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 17811139.635289557 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 100022.05959279681 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61138726.19534899 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 367224.4291688321 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 35921410.95725156 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15034360.455177985 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 54 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 352544257.1184483 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11624503.846549075 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65359.150114348 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 39900679.99917831 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 239790.72998661632 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23435121.476013336 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9831590.940830443 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 543560154.3070303 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 17916619.487589244 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 100609.9749084957 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61500895.238991775 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 369392.45950727176 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36134648.24061404 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15122321.299090283 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 55 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 356532134.7812736 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11755679.079597387 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 66090.28432498727 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 40351075.09991993 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 242486.90256081213 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23700304.349612672 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9940979.45387595 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 546808325.640417 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 18023463.194358308 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 101205.49196911039 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61867747.12829729 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 371588.52247755905 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36350642.68200827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15211419.47669699 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 56 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 360720551.24985373 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11893450.734804112 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 66858.18515532871 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 40824119.26446371 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 245318.65783684934 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23978822.501090266 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 10055868.798096385 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 547105491.097555 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 18033238.004768707 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 101259.97403960096 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61901309.30781256 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 371789.43369482213 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36370403.36589107 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15219570.801846161 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 57 PV_ICE
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 365549347.99729943 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 12052286.735364955 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 67743.49277927919 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 41369488.6517447 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 248583.3691589126 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 24299924.17616208 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 10188323.938565219 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 547320194.9753735 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 18040300.36565099 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 101299.33767196443 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61925558.18976325 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 371934.5932899481 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36384680.58202124 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15225460.184601963 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 58 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 370734845.9256943 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 12222855.884356052 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 68694.1977043551 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 41955144.24585345 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 252089.24333063487 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 24644745.496663906 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 10330563.484445821 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 547474067.4663007 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 18045361.76962664 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 101327.54852788961 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61942936.71084941 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 372038.62526510813 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36394912.67858034 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15229680.946722632 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 59 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 376238958.8752952 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 12403905.394881053 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 69703.31724535544 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 42576784.55582034 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 255810.5306003844 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 25010753.837941945 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 10481542.722551346 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 547583591.4541749 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 18048964.396349058 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 101347.62856574205 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61955306.46532112 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 372112.67356781213 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36402195.72191523 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15232685.217963973 tonnes. bad_life_eff
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 60 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 381977539.8841579 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 12592667.379287282 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 70755.42396748881 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 43224905.93519324 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 259690.33987215013 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 25392353.65894413 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 10638953.48000822 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 547661080.4039409 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 18051513.27871297 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 101361.83532605683 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61964058.14886987 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 372165.06323440344 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36407348.523507595 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15234810.759845898 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 61 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 387905984.896559 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 12787674.654301042 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 71842.34019986619 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 43894470.754970044 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 263698.5146963346 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 25786578.91289797 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 10801572.256061442 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 547715592.0590895 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 18053306.357556537 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 101371.82944807544 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61970214.7525794 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 372201.9181336787 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36410973.398335524 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15236306.028609008 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 62 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 396408051.00925994 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 13051669.761307007 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 73049.15525995716 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 44813015.18049611 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 268712.3354848041 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 26340641.460610908 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 10975787.710637292 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 547753711.045979 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 18054560.224252447 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 101378.8181517786 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61974519.951081455 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 372227.6900794847 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36413508.205904044 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15237351.642252963 tonnes. bad_life_eff
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 63 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 404262912.0347955 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 13300338.565586751 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 74232.47964941595 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 45672279.55947077 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 273504.54653473484 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 26867198.153494015 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 11141654.867208892 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 547780183.3247632 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 18055430.990016196 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 101383.67155759715 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61977509.75811111 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 372245.5877779772 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36415268.539483 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15238077.783689074 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 64 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 411762894.03441244 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 13545284.134788783 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 75482.37223951428 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 46510045.758388184 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 278353.138050388 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 27375691.49710536 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 11313468.439477526 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 547798410.8831542 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 18056030.558112822 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 101387.01338316033 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61979568.39774154 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 372257.91128616483 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36416480.62187911 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15238577.770317916 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 65 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 419381084.1222997 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 13794909.497504722 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 76888.98301848856 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 47365341.06680065 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 283540.2368752716 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 27887686.239091754 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 11503731.325361395 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 547810825.9501168 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 18056438.93305303 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 101389.28955132572 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61980970.56847194 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 372266.30501482985 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36417306.189614974 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15238918.31880741 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 66 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 413309359.0345896 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 13595189.240083046 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 75775.79793495314 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 46679594.044506796 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 279435.1915244214 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 27483933.25502369 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 11337182.339880433 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 547819166.9499527 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 18056713.29768752 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 101390.8187833751 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61981912.60977285 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 372271.9442989053 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36417860.843115464 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15239147.114584642 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 67 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 405443037.7230404 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 13336438.441157004 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 74333.59305580959 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 45791163.4357626 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 274116.8338481769 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 26960844.568151984 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 11121407.11702695 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 547825241.3933933 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 18056913.10736106 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 101391.93246683922 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61982598.66380877 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 372276.05118211306 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36418264.7768625 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15239313.73813524 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 68 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 396029195.5387041 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 13026784.2724944 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 72607.66697269824 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 44727954.19077888 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 267752.209538906 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 26334850.00835792 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 10863182.997418402 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 547829332.6029494 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 18057047.68154121 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 101392.68254583418 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61983060.72932231 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 372278.81721656374 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36418536.83102222 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15239425.961068776 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 69 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 384876095.93512565 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 12659919.849007072 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 70562.86686489703 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 43468311.38218374 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 260211.68703272173 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 25593199.623746794 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 10557250.598123189 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 547831998.7915418 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 18057135.381801732 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 101393.17136265774 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61983361.85146828 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 372280.61980560195 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36418714.12521534 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15239499.095309665 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 70 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 372216681.22727376 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 12243507.4575143 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 68241.90018483526 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 42038543.76021675 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 251652.75678798076 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 24751383.43625236 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 10209999.586933123 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 547833676.3793637 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 18057190.563527968 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 101393.47893022915 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61983551.32000264 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 372281.75400947133 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36418825.68018188 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15239545.111976383 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 71 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 358190693.6998732 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11782143.710127935 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 65670.38716805521 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 40454433.96560264 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 242169.89745909168 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 23818693.922665484 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9825263.130767556 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 547834702.3763952 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 18057224.31215597 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 101393.66703568106 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61983667.19718731 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 372282.44767795654 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36418893.90615675 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15239573.255339641 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 72 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 342482434.8058201 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 11265444.1783397 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 62790.447902595486 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 38680326.672138095 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 231549.66775312077 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 22774137.999699663 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 9394381.537038576 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 544668107.2678713 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 17932386.509592067 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 100348.5737057975 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 61571005.25148521 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 369172.30342393497 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 36193424.54973001 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 15074816.819500383 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 73 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 325531545.53110003 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 10707870.19062308 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 59682.6858052183 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 36765875.39553131 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 220089.3054664921 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 21646950.581229627 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 8929414.271406109 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 539550296.3862323 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 17751265.57541122 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 99072.17212782045 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 60956293.05511532 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 365029.6306961967 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 35858680.949847944 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14869116.02298059 tonnes. bad_life_eff
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 74 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 307111708.9762346 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 10101977.393228576 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 56305.608121720834 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 34685519.666941755 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 207635.79953190556 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 20422082.217191435 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 8424153.40293439 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 532452424.7330917 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 17515485.058446262 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 97606.40482601839 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 60142442.27967583 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 359938.99331791373 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 35399526.770864494 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14629846.856929606 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 75 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 287092109.9615697 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 9443462.8177283 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 52635.2313046619 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 32424485.082287796 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 194100.7068401458 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 19090834.05867745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 7875010.637499084 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 523569396.51115954 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 17222027.20623504 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 95990.78251609253 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 59132478.73301357 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 353981.1315479487 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 34815921.859832495 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14361643.611683633 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 76 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 265854364.94554433 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 8744879.163102338 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 48741.520601649 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 30025871.80606182 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 179742.03526309293 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 17678582.54840181 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 7292453.813000908 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 513006266.9172418 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16874568.958175346 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 94054.14702460721 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 57939467.75829152 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 346839.4831031414 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 34113502.854849085 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 14071894.241948187 tonnes. bad_life_eff
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 77 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 243191550.4758847 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 7999419.99385539 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 44586.53883713844 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 27466309.68576358 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 164419.88548984815 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 16171567.847089456 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 6670806.96576387 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 500533462.24553144 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 16464294.822930556 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 91767.39327508335 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 56530776.07022564 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 338406.7184291762 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 33284095.720442653 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13729761.99218934 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 78 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 218996874.69337377 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 7203572.552524734 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 40150.70687949865 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 24733737.53640764 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 148062.0563883024 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 14562688.590431215 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 6007140.76754052 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 486375142.8004917 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 15998578.216303324 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 89171.61863336744 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 54931720.56954536 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 328834.3905365056 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 32342606.499052413 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 13341395.637385217 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 79 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 193425906.5219866 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 6362454.044697639 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 35462.54660729444 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 21845725.476014238 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 130773.7268785938 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 12862289.68310832 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 5305722.51404766 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 470244757.0333419 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 15467993.456422312 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 86214.28697419705 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 53109937.82271714 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 317928.76418743207 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 31269980.302448355 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 12898934.994630974 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 80 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 166836932.52954784 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 5487849.767719246 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 30587.74598517707 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 18842738.766673565 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 112797.13167791956 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 11094196.19440853 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 4576380.0982680395 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 452351257.0799941 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 14879413.70927746 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 82933.70741030558 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 51089027.1039067 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 305831.110269831 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 30080111.871776257 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 12408111.674918128 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 81 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 138763241.73508212 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 4564407.966377424 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 25440.738605768234 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 15672066.578950403 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 93816.73118015984 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 9227373.130397804 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 3806311.517595899 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 432840055.2484356 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 14237622.093861148 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 79356.53971463644 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 48885411.432234086 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 292639.7408960326 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 28782670.724746805 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 11872914.37536684 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 82 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 109903893.44202802 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 3615123.1442142236 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 20149.689426778146 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 12412661.406380728 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 74305.1538561518 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 7308306.008079391 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 3014692.1490611294 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 411306757.9830243 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 13529316.692865552 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 75408.6427053153 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 46453418.17387439 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 278081.2487787299 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 27350765.804457743 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 11282250.476424294 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 83 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 79869506.76761594 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 2627187.203198455 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 14643.209677428882 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 9020546.162215713 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 53999.14236808265 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 5311102.071920682 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 2190841.174600636 tonnes. good_life_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 388224152.6222122 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 12770049.134135693 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 71176.69682410246 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 43846444.428472005 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 262475.28170131525 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 25815836.165868275 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 10649088.656749342 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 84 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 49137282.506203786 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 1616296.945163909 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 9008.788958856332 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 5549616.406455192 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 33221.32840200586 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 3267493.8595347055 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 1347848.3351073302 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 363348636.53830725 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 11951806.475911463 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 66616.04016560197 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 41036977.458847664 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 245657.14185224145 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 24161682.90562938 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 9966746.83342214 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 85 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 27825183.552474584 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 915267.5296769137 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 5101.44626606153 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 3142605.5182425706 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 18812.386715242992 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 1850298.0173284502 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 763251.9629168281 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 336489585.6804348 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 11068318.426972238 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 61691.723873116505 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 38003487.98405132 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 227497.94981709166 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 22375630.04973634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 9229996.13955184 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 86 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 27825190.731336117 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 915267.7658147581 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 5101.447582228101 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 3142606.3290307494 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 18812.391568814546 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 1850298.494702957 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 763252.1598348519 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 308088339.79161185 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 10134102.193847058 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 56484.66281212503 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 34795821.37919828 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 208296.0919084949 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 20487025.474724535 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 8450942.638141973 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 87 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 27825194.500344884 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 915267.8897906281 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 5101.448273235069 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 3142606.7547065667 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 18812.39411701159 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 1850298.7453316522 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 763252.2632197347 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 277939315.95792365 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 9142395.436032113 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 50957.16558028407 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 31390758.893601477 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 187912.5751429431 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 18482198.483425107 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 7623947.136829557 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 88 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 27825195.890928805 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 915267.9355317928 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 5101.44852818358 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 3142606.9117605784 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 18812.395057174388 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 1850298.83780165 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 763252.3013638105 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 245899295.17896178 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 8088487.180086433 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 45082.97452385775 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 27772125.222607546 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 166250.57028602844 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 16351625.407036455 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 6745081.10148714 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 89 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 27825196.366560742 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 915267.9511769894 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 5101.448615385548 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 3142606.9654789497 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 18812.395378745383 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 1850298.8694298624 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 763252.3144105171 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 212154431.96828172 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 6978500.698528158 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 38896.21905824748 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 23960944.85291712 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 143435.9349333055 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 14107685.007650003 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 5819450.798443878 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 90 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 27825196.513353962 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 915267.9560055316 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 5101.448642298497 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 3142606.9820579314 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 18812.395477991122 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 1850298.879191208 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 763252.3184370932 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 177166085.11882195 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 5827611.694400235 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 32481.484325079164 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 20009324.13221504 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 119780.59011885761 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 11781056.373446507 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 4859711.418406975 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 91 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 27825196.553308804 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 915267.957319786 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 5101.448649623784 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 3142606.9865704724 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 18812.39550500427 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 1850298.8818480938 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 763252.3195330646 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 140431141.52981663 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 4619271.019553562 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 25746.529982273158 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 15860440.937341344 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 94944.38505103713 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 9338283.869853655 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 3852062.439234161 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 92 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 27825196.563004196 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 915267.9576387011 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 5101.448651401328 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 3142606.987665479 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 18812.395511559254 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 1850298.8824928105 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 763252.3197990116 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 102758201.02692822 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 3380076.348125149 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 18839.60405678627 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 11605619.38371058 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 69474.00768212847 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 6833137.1566982735 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 2818683.9627381363 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 93 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 27825196.564873353 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 915267.9577001842 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 5101.448651744017 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 3142606.9878765834 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 18812.39551282297 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 1850298.882617104 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 763252.319850283 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 63779852.14416623 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 2097942.232979746 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 11693.345632642815 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 7203363.633629177 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 43121.05402339273 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 4241184.384113701 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 1749497.797625514 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 94 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 27582145.897618197 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 907273.1718478131 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 5056.887942320689 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 3115156.589690058 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 18648.070877365346 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 1834136.6831159047 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 756585.3773476072 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_life_circ = 24050321.85403978 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_life_circ = 791099.1361393557 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_life_circ = 4409.36622712621 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_life_circ = 2716268.6647324422 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_life_circ = 16260.232551242882 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_life_circ = 1599280.118268377 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_life_circ = 659706.5327263515 tonnes. bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 95 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 26994966.069093302 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 887958.7752287728 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 4949.234875519319 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 3048839.881811272 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 18251.083235405367 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 1795090.8428436944 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 740478.8831761812 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 96 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 26057575.14260597 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 857124.711690266 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 4777.37439406911 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 2942969.9639085173 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 17617.320637606757 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 1732756.9297728164 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 714766.008243565 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 97 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 21157319.82228051 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 695938.1889360767 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 3878.965614142146 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 2389529.970191645 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 14304.296739110638 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 1406903.4565512517 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 580350.740686438 tonnes. good_life_circ
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ******************** Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 98 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 15375943.107777536 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 505768.5042101631 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 2819.0127625364876 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 1736575.1987784535 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 10395.553628948528 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 1022457.8390731101 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 421766.08598382387 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 99 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario good_eff_circ = 8420741.848582167 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario good_eff_circ = 276987.6279616985 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario good_eff_circ = 1543.8518843875581 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario good_eff_circ = 951047.4477605743 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario good_eff_circ = 5693.197020102656 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario good_eff_circ = 559956.1245474921 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario good_eff_circ = 230983.12120836417 tonnes. good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 100 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_life >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_life ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet good_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: good_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations Warning: Paths 0 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P0+P2+P3+P4). Warning: Paths B 1 through 4 add to above 100%;Fixing by Updating Landfill value to the remainder of100-(P2+P3+P4). ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_eff >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_eff ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_eff_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_eff_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet bad_life_circ >>>> Calculating Material Flows <<<< Working on Scenario: bad_life_circ ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_2724\1670677626.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim2.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Energy Flows <<<< Working on Scenario: PV_ICE ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: good_eff_life ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: good_eff_circ ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: good_life_circ ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: bad_life_eff ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: bad_eff_circ ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: bad_life_circ ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet
sim2.saveSimulation(customname='_EnergySensitivity_withreplacements')
#aggregate results - mass
cc_yearly2, cc_cumu2 = sim2.aggregateResults() #have to do this to get auto plots
cc_yearly2.to_csv(os.path.join(testfolder, 'cc_10scen_yearly.csv'))
cc_cumu2.to_csv(os.path.join(testfolder, 'cc_10scen_cumu.csv'))
#aggregate results - energy
allenergy2, energyGen2, energy_demands2 = sim2.aggregateEnergyResults()
allenergy2.to_csv(os.path.join(testfolder, 'cc_10scen_allenergy.csv'))
energyGen2.to_csv(os.path.join(testfolder, 'cc_10scen_energyGen.csv'))
energy_demands2.to_csv(os.path.join(testfolder, 'cc_10scen_energy_demands.csv'))
#UnderInstall_df.to_csv(os.path.join(testfolder, 'cc_10scen_underInstalls.csv'))
:) Saved Input and Output Dataframes
C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands
scennames_labels2=sim2.scenario.keys()
cumu_installs2 = cc_cumu2.filter(like='newInstalled')
total_installed2 = cumu_installs2.loc[2100]
total_installed2.index= scennames_labels2
plt.bar(scennames_labels2, total_installed2/1e6)
plt.xticks(rotation=45)
plt.ylabel('Cumulative installed [TW]')
plt.title('Cumulative Installs with Replacements')
#plt.ylim(0,410)
Text(0.5, 1.0, 'Cumulative Installs with Replacements')
cumu_area_deployed2 = pd.DataFrame()
for scen in sim2.scenario.keys():
area_deploy = sim2.scenario[scen].dataOut_m['Area'].cumsum()
cumu_area_deployed2 = pd.concat([cumu_area_deployed2,area_deploy], axis=1)
cumu_area_deployed2.columns = sim2.scenario.keys()
cumu_area_deployed2_total = cumu_area_deployed2.iloc[-1,:]
#cumu_area_deployed
plt.bar(scennames_labels2, cumu_area_deployed2.iloc[-1,:]/1e12)
plt.xticks(rotation=45)
plt.ylabel('Cumulative installed Area [m2 1e12]')
plt.title('Cumulative Area Deployed with Replacements')
#plt.ylim(0,410)
Text(0.5, 1.0, 'Cumulative Area Deployed with Replacements')
cumu_virgin_module2 = cc_cumu2.filter(like='VirginStock_Module')
virgin2 = cumu_virgin_module2.loc[2100]
virgin2.index= scennames_labels2
plt.bar(scennames_labels2, virgin2/1e9)
#plt.legend(scennames)
plt.title('Cumulative Virgin Material Demands')
plt.ylabel('Virgin Material Requirements\n[billion tonnes]')
plt.xticks(rotation=45)
([0, 1, 2, 3, 4, 5, 6], [Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, '')])
cumu_lifecycle_wastes2 = cc_cumu2.filter(like='WasteAll_Module')
wastes2 = cumu_lifecycle_wastes2.loc[2100]
wastes2.index= scennames_labels2
plt.bar(scennames_labels2, wastes2/1e9)
#plt.legend(scennames)
plt.title('Cumulative Lifecycle Wastes')
plt.ylabel('Lifecycle Wastes\n[billion tonnes]')
plt.xticks(rotation=45)
([0, 1, 2, 3, 4, 5, 6], [Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, '')])
e_annual_sumDemands2 = energy_demands2.filter(like='demand_total')
e_annual_sumDemands_cumu2 = e_annual_sumDemands2.cumsum()
cumu_e_demands2 = e_annual_sumDemands_cumu2.loc[2100]
cumu_e_demands2.index= scennames_labels2
plt.bar(scennames_labels2, cumu_e_demands2/1e12)
plt.title('Cumulative Lifecycle Energy Demands')
plt.ylabel('Cumulative Energy Demands\n[TWh]')
Text(0, 0.5, 'Cumulative Energy Demands\n[TWh]')
energyGen_cumu2 = energyGen2.cumsum()
energyGen_cumu2.columns = e_annual_sumDemands_cumu2.columns = scennames_labels2
netEnergy_cumu2 = energyGen_cumu2.loc[[2100]] - e_annual_sumDemands_cumu2.loc[[2100]]
#netEnergy_cumu.index= scennames_labels
plt.bar(scennames_labels2, netEnergy_cumu2.loc[2100]/1e12)
plt.title('Net Energy Cumulatively')
plt.ylabel('Cumulative Net Energy [TWh]')
Text(0, 0.5, 'Cumulative Net Energy [TWh]')
netEnergy_cumu_norm2 = netEnergy_cumu2/netEnergy_cumu2.loc[2100,'PV_ICE']
netEnergy_cumu_norm_waterfall2 = netEnergy_cumu_norm2-1
plt.bar(scennames_labels2, netEnergy_cumu_norm_waterfall2.loc[2100])
plt.title('Net Energy Cumulatively Relative to PV ICE')
plt.ylabel('Relative Cumulative Net Energy')
#plt.ylim(-0.026,0.005)
plt.plot(0.0, lw=2)
plt.xticks(rotation=90)
([0, 1, 2, 3, 4, 5, 6], [Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, '')])
energyBalance_allyears2 = energyGen_cumu2/e_annual_sumDemands_cumu2
energyBalance2 = energyBalance_allyears2.loc[2100]
energyBalance2.index = scennames_labels2
plt.bar(scennames_labels2, energyBalance2)
plt.title('Energy Balance')
plt.ylabel('Unitless')
Text(0, 0.5, 'Unitless')
discussTable2 = pd.concat([total_installed2,cumu_area_deployed2_total,virgin2,wastes2,
cumu_e_demands2, netEnergy_cumu2.loc[2100].T, energyBalance2],
axis=1, keys=['replacements','area','virgin','wastes','energydemand','netenergy','energybalance'])
#discussTable.to_csv(os.path.join(testfolder,'discussiontable.csv'))
discussTable2
| replacements | area | virgin | wastes | energydemand | netenergy | energybalance | |
|---|---|---|---|---|---|---|---|
| PV_ICE | 1.906612e+08 | 7.728509e+11 | 1.008632e+10 | 5.139612e+09 | 1.467115e+17 | 7.041318e+18 | 48.994305 |
| good_eff_life | 1.590911e+08 | 5.376261e+11 | 7.016802e+09 | 3.354618e+09 | 1.021476e+17 | 7.743488e+18 | 76.806843 |
| good_eff_circ | 1.752295e+08 | 5.914535e+11 | 6.482708e+09 | 2.848851e+09 | 1.456555e+17 | 7.702337e+18 | 53.880507 |
| good_life_circ | 1.732992e+08 | 7.033519e+11 | 7.780292e+09 | 3.174759e+09 | 1.735448e+17 | 7.014485e+18 | 41.418867 |
| bad_life_eff | 2.593475e+08 | 1.311428e+12 | 1.710881e+10 | 1.099588e+10 | 2.487427e+17 | 6.939287e+18 | 28.897452 |
| bad_eff_circ | 1.906612e+08 | 9.678296e+11 | 1.267038e+10 | 6.741955e+09 | 1.804276e+17 | 7.007602e+18 | 39.838860 |
| bad_life_circ | 2.593475e+08 | 1.047702e+12 | 1.371424e+10 | 9.132573e+09 | 1.953239e+17 | 6.992706e+18 | 36.800560 |
discussTable_all = pd.concat([discussTable,discussTable2], axis=0)
discussTable_all
| replacements | area | virgin | wastes | energydemand | netenergy | energybalance | |
|---|---|---|---|---|---|---|---|
| PV_ICE | 1.906612e+08 | 7.728509e+11 | 1.008632e+10 | 5.139612e+09 | 1.467115e+17 | 7.041318e+18 | 48.994305 |
| life_high | 1.732992e+08 | 7.033519e+11 | 9.180273e+09 | 4.394466e+09 | 1.335581e+17 | 7.054472e+18 | 53.819491 |
| life_low | 2.593475e+08 | 1.047702e+12 | 1.366772e+10 | 8.777769e+09 | 1.987961e+17 | 6.989234e+18 | 36.157805 |
| eff_high | 1.906612e+08 | 6.435582e+11 | 8.398524e+09 | 4.276345e+09 | 1.222332e+17 | 7.065796e+18 | 58.805872 |
| eff_high_bifi | 1.752295e+08 | 5.914535e+11 | 7.718548e+09 | 3.929078e+09 | 1.123348e+17 | 7.735658e+18 | 69.862551 |
| eff_low | 1.906612e+08 | 9.678296e+11 | 1.263162e+10 | 6.447753e+09 | 1.836305e+17 | 7.004399e+18 | 39.143994 |
| circ_high | 1.906612e+08 | 7.728509e+11 | 4.746508e+09 | 3.423740e+06 | 1.734309e+17 | 7.014599e+18 | 41.446065 |
| circ_mid | 1.906612e+08 | 7.728509e+11 | 8.469434e+09 | 3.726350e+09 | 1.903153e+17 | 6.997714e+18 | 37.769062 |
| circ_low | 1.906612e+08 | 7.728509e+11 | 1.011723e+10 | 5.374146e+09 | 1.441579e+17 | 7.043872e+18 | 49.862190 |
| PV_ICE | 1.906612e+08 | 7.728509e+11 | 1.008632e+10 | 5.139612e+09 | 1.467115e+17 | 7.041318e+18 | 48.994305 |
| good_eff_life | 1.590911e+08 | 5.376261e+11 | 7.016802e+09 | 3.354618e+09 | 1.021476e+17 | 7.743488e+18 | 76.806843 |
| good_eff_circ | 1.752295e+08 | 5.914535e+11 | 6.482708e+09 | 2.848851e+09 | 1.456555e+17 | 7.702337e+18 | 53.880507 |
| good_life_circ | 1.732992e+08 | 7.033519e+11 | 7.780292e+09 | 3.174759e+09 | 1.735448e+17 | 7.014485e+18 | 41.418867 |
| bad_life_eff | 2.593475e+08 | 1.311428e+12 | 1.710881e+10 | 1.099588e+10 | 2.487427e+17 | 6.939287e+18 | 28.897452 |
| bad_eff_circ | 1.906612e+08 | 9.678296e+11 | 1.267038e+10 | 6.741955e+09 | 1.804276e+17 | 7.007602e+18 | 39.838860 |
| bad_life_circ | 2.593475e+08 | 1.047702e+12 | 1.371424e+10 | 9.132573e+09 | 1.953239e+17 | 6.992706e+18 | 36.800560 |
discussTable_norm = (discussTable_all/discussTable.loc['PV_ICE'])*100-100
discussTable_norm
| replacements | area | virgin | wastes | energydemand | netenergy | energybalance | |
|---|---|---|---|---|---|---|---|
| PV_ICE | 0.000000e+00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
| life_high | -9.106160e+00 | -8.992551 | -8.982934 | -14.498109 | -8.965499 | 0.186803 | 9.848463 |
| life_low | 3.602537e+01 | 35.563336 | 35.507452 | 70.786595 | 35.501328 | -0.739699 | -26.199985 |
| eff_high | -4.263256e-14 | -16.729327 | -16.733513 | -16.796343 | -16.684673 | 0.347639 | 20.025934 |
| eff_high_bifi | -8.093759e+00 | -23.471200 | -23.475082 | -23.553026 | -23.431541 | 9.860938 | 42.593206 |
| eff_low | -2.842171e-14 | 25.228496 | 25.235163 | 25.452119 | 25.164299 | -0.524318 | -20.105013 |
| circ_high | 0.000000e+00 | 0.000000 | -52.941136 | -99.933385 | 18.212201 | -0.379466 | -15.406363 |
| circ_mid | 0.000000e+00 | 0.000000 | -16.030489 | -27.497454 | 29.720734 | -0.619255 | -22.911321 |
| circ_low | 0.000000e+00 | 0.000000 | 0.306455 | 4.563261 | -1.740566 | 0.036266 | 1.771398 |
| PV_ICE | 0.000000e+00 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
| good_eff_life | -1.655818e+01 | -30.435992 | -30.432492 | -34.730139 | -30.375204 | 9.972131 | 56.766879 |
| good_eff_circ | -8.093759e+00 | -23.471200 | -35.727718 | -44.570705 | -0.719795 | 9.387720 | 9.973000 |
| good_life_circ | -9.106160e+00 | -8.992551 | -22.862927 | -38.229599 | 18.289824 | -0.381083 | -15.461875 |
| bad_life_eff | 3.602537e+01 | 69.687123 | 69.623932 | 113.943791 | 69.545418 | -1.449035 | -41.018754 |
| bad_eff_circ | -2.842171e-14 | 25.228496 | 25.619425 | 31.176342 | 22.981193 | -0.478832 | -18.686754 |
| bad_life_circ | 3.602537e+01 | 35.563336 | 35.968760 | 77.689928 | 33.134672 | -0.690388 | -24.888086 |
graph_order = ['life_high','life_low','good_eff_life','bad_life_eff','eff_high','eff_high_bifi','eff_low','good_eff_circ',
'bad_eff_circ','circ_high','circ_low','good_life_circ','bad_life_circ']
Above it appears that both increasing and decreasing circularity reduce energy demands, which would imply there might be a bell curve or threshold situation. OR more likely, open vs closed loop matters a lot.
#load in a baseline and materials for modification
sim3 = PV_ICE.Simulation(name='sim3', path=testfolder)
sim3.createScenario(name='PV_ICE', massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim3.scenario['PV_ICE'].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
path = C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\TEMP\EnergyAnalysis\Sensitivity Baseline folder directed to default: C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\baselines
mod_circ_vars = ['mod_EOL_pg4_recycled', 'mod_EOL_pb4_recycled']
mod_alt_paths = ['mod_EOL_pg0_resell','mod_EOL_pg1_landfill','mod_EOL_pg2_stored','mod_EOL_pg3_reMFG',
'mod_EOL_reMFG_yield','mod_EOL_sp_reMFG_recycle',
'mod_EOL_pb1_landfill','mod_EOL_pb2_stored','mod_EOL_pb3_reMFG']
mat_circ_vars = ['mat_MFG_scrap_Recycled', 'mat_MFG_scrap_Recycling_eff', 'mat_MFG_scrap_Recycled_into_HQ',
'mat_MFG_scrap_Recycled_into_HQ_Reused4MFG', 'mat_PG4_Recycling_target', 'mat_Recycling_yield',
'mat_EOL_Recycled_into_HQ', 'mat_EOL_RecycledHQ_Reused4MFG']
#range of circularity / closed loop vs downcycling
rrates = pd.Series(range(0,101,10))
for r in range(0,len(rrates)): print(rrates[r])
0 10 20 30 40 50 60 70 80 90 100
#closed loop at various rates
for r in range(0,len(rrates)):
scenname = 'circ_CL_'+str(rrates[r])
sim3.createScenario(name=scenname, massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim3.scenario[scenname].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
for var in range(0,len(mod_alt_paths)):
sim3.modifyScenario(scenname, mod_alt_paths[var], 0.0, start_year=2022) #set non recycle to 0
sim3.modifyScenario(scenname, 'mod_EOL_collection_eff',100.0, start_year=2022) #collect everything
for var in range(0,len(mod_circ_vars)):
sim3.modifyScenario(scenname, mod_circ_vars[var], rrates[r], start_year=2022) #recycle modules at the rate
for mat in range (0, len(MATERIALS)):
for mvar in range(0,len(mat_circ_vars)):
sim3.scenario[scenname].modifyMaterials(MATERIALS[mat], mat_circ_vars[mvar], 100.0, start_year=2022) #100% recycle HQ path and yield
#sim3.scenario[scenname].modifyMaterials(MATERIALS[mat], 'mat_PG4_Recycling_target', rrates[r], start_year=2022) #
#open loop at various rates
for r in range(0,len(rrates)):
scenname = 'circ_OL_'+str(rrates[r])
sim3.createScenario(name=scenname, massmodulefile=moduleFile_m, energymodulefile=moduleFile_e)
for mat in range (0, len(MATERIALS)):
matbaseline_m = os.path.join(baselinesfolder,'baseline_material_mass_'+MATERIALS[mat]+'.csv')
matbaseline_e = os.path.join(baselinesfolder,'baseline_material_energy_'+MATERIALS[mat]+'.csv')
sim3.scenario[scenname].addMaterial(MATERIALS[mat], massmatfile=matbaseline_m, energymatfile=matbaseline_e)
for var in range(0,len(mod_alt_paths)):
sim3.modifyScenario(scenname, mod_alt_paths[var], 0.0, start_year=2022) #set non recycle to 0
sim3.modifyScenario(scenname, 'mod_EOL_collection_eff',100.0, start_year=2022) #collect everything
for var in range(0,len(mod_circ_vars)):
sim3.modifyScenario(scenname, mod_circ_vars[var], rrates[r], start_year=2022) #recycle modules at the rate
for mat in range (0, len(MATERIALS)):
for mvar in range(0,len(mat_circ_vars)):
sim3.scenario[scenname].modifyMaterials(MATERIALS[mat], mat_circ_vars[mvar], 100.0, start_year=2022) # 100% recycle HQ path and yield
#sim3.scenario[scenname].modifyMaterials(MATERIALS[mat], 'mat_PG4_Recycling_target', rrates[r], start_year=2022) #
sim3.scenario[scenname].modifyMaterials(MATERIALS[mat], 'mat_MFG_scrap_Recycled_into_HQ', 0.0, start_year=2022) #Open loop
sim3.scenario[scenname].modifyMaterials(MATERIALS[mat], 'mat_EOL_RecycledHQ_Reused4MFG', 0.0, start_year=2022) #Open loop
#trim to start in 2000, this trims module and materials
#had to specify and end year, cannot use to extend
sim3.trim_Years(startYear=2000, endYear=2100)
Trimming and extending PV_ICE PV_ICE glass : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE silicon : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE silver : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE copper : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 PV_ICE backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_CL_0 circ_CL_0 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_0 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_0 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_0 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_0 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_0 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_0 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_0 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_CL_10 circ_CL_10 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_10 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_10 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_10 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_10 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_10 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_10 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_10 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_CL_20 circ_CL_20 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_20 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_20 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_20 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_20 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_20 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_20 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_20 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_CL_30 circ_CL_30 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_30 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_30 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_30 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_30 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_30 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_30 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_30 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_CL_40 circ_CL_40 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_40 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_40 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_40 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_40 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_40 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_40 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_40 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_CL_50 circ_CL_50 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_50 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_50 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_50 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_50 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_50 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_50 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_50 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_CL_60 circ_CL_60 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_60 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_60 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_60 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_60 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_60 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_60 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_60 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_CL_70 circ_CL_70 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_70 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_70 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_70 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_70 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_70 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_70 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_70 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_CL_80 circ_CL_80 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_80 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_80 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_80 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_80 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_80 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_80 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_80 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_CL_90 circ_CL_90 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_90 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_90 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_90 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_90 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_90 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_90 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_90 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_CL_100 circ_CL_100 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_100 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_100 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_100 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_100 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_100 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_100 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_CL_100 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_OL_0 circ_OL_0 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_0 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_0 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_0 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_0 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_0 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_0 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_0 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_OL_10 circ_OL_10 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_10 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_10 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_10 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_10 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_10 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_10 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_10 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_OL_20 circ_OL_20 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_20 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_20 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_20 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_20 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_20 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_20 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_20 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_OL_30 circ_OL_30 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_30 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_30 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_30 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_30 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_30 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_30 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_30 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_OL_40 circ_OL_40 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_40 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_40 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_40 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_40 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_40 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_40 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_40 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_OL_50 circ_OL_50 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_50 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_50 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_50 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_50 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_50 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_50 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_50 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_OL_60 circ_OL_60 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_60 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_60 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_60 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_60 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_60 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_60 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_60 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_OL_70 circ_OL_70 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_70 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_70 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_70 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_70 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_70 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_70 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_70 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_OL_80 circ_OL_80 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_80 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_80 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_80 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_80 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_80 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_80 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_80 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_OL_90 circ_OL_90 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_90 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_90 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_90 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_90 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_90 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_90 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_90 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100 Trimming and extending circ_OL_100 circ_OL_100 glass : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_100 silicon : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_100 silver : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_100 aluminium_frames : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_100 copper : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_100 encapsulant : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_100 backsheet : Data trimmed for Energy, years now encompass 2000 to 2100 circ_OL_100 backsheet : Data trimmed for Mass, years now encompass 2000 to 2100
global_projection = pd.read_csv(os.path.join(supportMatfolder,'output-globalInstallsProjection.csv'), index_col=0)
global_projection.iloc[-1,:]
#fig, ax1 = plt.subplots()
#ax1.stackplot(global_projection.index, global_projection['World_cum']/1e6, color='#F7A11A')
#ax1.set_ylabel('Cumulative Solar Capacity [TW]', color='#F7A11A')
#ax1.set_ylim(0,90)
#ax1.set_xlim(2000,2100)
#ax2 = ax1.twinx()
#ax2.plot(global_projection['World_annual_[MWdc]']/1e6)
#ax2.set_ylabel('Annual Installations [TW]')
#ax2.set_ylim(0,5)
#plt.show()
#fig.savefig('energyresults-deployment.png', dpi=300, bbox_inches='tight')
World_cum 85966000.0 World_annual_[MWdc] 219320.0 Name: 2100, dtype: float64
#deployment projection for all scenarios
sim3.modifyScenario(scenarios=None,stage='new_Installed_Capacity_[MW]',
value= global_projection['World_annual_[MWdc]'], start_year=2000)
sim3.calculateMassFlow()
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet Working on Scenario: circ_CL_0 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet Working on Scenario: circ_CL_10 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet Working on Scenario: circ_CL_20 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. Working on Scenario: circ_CL_30 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. Working on Scenario: circ_CL_40 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. Working on Scenario: circ_CL_50 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. Working on Scenario: circ_CL_60 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. Working on Scenario: circ_CL_70 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. Working on Scenario: circ_CL_80 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. Working on Scenario: circ_CL_90 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. Working on Scenario: circ_CL_100 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. Working on Scenario: circ_OL_0 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet Working on Scenario: circ_OL_10 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet Working on Scenario: circ_OL_20 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet Working on Scenario: circ_OL_30 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet Working on Scenario: circ_OL_40 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet Working on Scenario: circ_OL_50 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet Working on Scenario: circ_OL_60 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet Working on Scenario: circ_OL_70 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet Working on Scenario: circ_OL_80 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet Working on Scenario: circ_OL_90 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet Working on Scenario: circ_OL_100 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet
UnderInstall_df = pd.DataFrame()
for row in range (0,len(sim3.scenario['PV_ICE'].dataIn_m)): #loop over length of years
print(row)
for scen in sim3.scenario.keys(): #loop over scenarios
print(scen)
Under_Installment = global_projection.iloc[row,0] - ((sim3.scenario[scen].dataOut_m['Effective_Capacity_[W]'][row])/1e6) # MWATTS
sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
UnderInstall_df.loc[row,scen] = Under_Installment #save the underinstallment as df
#calculate flows for that scenario with it's bifi factor and modified weibull
sim3.calculateMassFlow(scenarios=[scen])
sim3.calculateEnergyFlow()
0 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 1 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 2 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 3 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 4 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 5 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 6 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 7 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 8 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 9 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 10 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 11 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 12 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 13 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 14 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 15 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 16 PV_ICE
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 17 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 18 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 19 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 20 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522204.79505684547 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 21 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224490.6353431577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33684889.47250623 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50112393.00871647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283718.6634325451 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036146.3690535728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101071559.92187954 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42565832.923453495 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833548222.2197533 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60606938.05154895 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 342990.8845836029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207858748.47799954 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252873.9033478543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122248040.58373827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51446776.37440069 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151312686.060818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71101483.09438154 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402474.12784421135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243858241.82510284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469601.4376421338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143424521.24559745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60358010.90507804 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469077149.9018927 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81602984.70466155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462146.6814235276 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279857735.1722062 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687047.5853848225 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164613862.17420936 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69293758.78940447 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787030969.8975344 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92130764.51066588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522281.0480266041 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315960505.1026145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1904912.986497598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185857396.31027597 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78240039.20964287 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 22 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165440.00686850527 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39664519.98678356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224512.24064445577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819930.530903125 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79987275.22633837 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33687671.65662209 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516714180.410585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50115613.529237114 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283744.5897941028 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171880846.6307254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036216.0523398492 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101078119.44297825 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42569171.544392526 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833642343.5036716 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60610695.3254897 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 343027.8464509927 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207870977.30589268 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1252955.2005151769 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122255693.35835342 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51450671.43216289 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151420253.2424393 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71105777.12174241 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402523.68397610966 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243872217.62840927 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469694.3486905023 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143433267.27372903 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60363450.560515255 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469198162.9812164 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81608887.84178486 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462202.43207191315 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279873457.950926 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687175.3131826913 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164625885.61956882 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69300937.9796526 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787195276.6245084 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92137323.551914 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522370.0331784635 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 315981852.8637393 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1905079.478916816 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185870755.69400868 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78249089.93890864 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 23 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165458.67401389577 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24849261.0780108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201241697.236229 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39666273.59965499 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224540.75433715302 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136081455.86607113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 819998.0371492003 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79993540.3069005 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33691486.544892006 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516808893.2540746 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50120039.43591181 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283778.80622533953 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171892720.6335912 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036315.0422080295 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101087306.43729417 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42573749.41031642 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833777370.686463 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60615858.88327685 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 343074.677409751 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207887905.45519486 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1253070.6886947204 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122266411.51838867 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51456012.275740765 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151574570.022772 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71111678.330642 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402584.41010783124 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243891564.08475465 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1469841.360927598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143445516.59948364 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60370611.22547849 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469371769.3590903 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81616676.1846079 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462270.74897009996 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279895222.7143145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687349.5073277692 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164642052.12882996 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69310078.19647042 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787421571.4978733 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92145977.2661618 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522470.6197191128 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 316010223.10240877 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1905299.08363438 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185888718.48207664 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78260304.15714504 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 24 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165485.58144147872 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605187.275731472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24852388.11795002 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201343677.1286573 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39670840.60845546 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224580.212216616 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136093874.4890892 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 820103.6806322742 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 80002983.31480291 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33697090.05979808 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1516958434.617955 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50126468.750007756 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283826.15568069514 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171910931.06487742 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036463.764307011 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101100600.05385323 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42580473.62820371 tonnes. circ_CL_70
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1833982043.2718678 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60623359.74972212 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 343137.35501555575 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207912829.50266886 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1253244.1978101986 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122281920.73770759 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51463857.196609266 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2151808481.548949 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71120250.74943659 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402663.5069892459 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243920048.7104392 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1470066.3517815294 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143463241.42156234 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60380783.8059816 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2469634919.8260393 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81627618.43184862 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462359.73296169145 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279931476.4760616 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687602.6220384417 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164664676.94338125 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69322715.04188816 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2787753322.5102015 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92158135.3186515 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522593.43704018486 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 316050622.1522593 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1905609.6324606165 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185913857.16491142 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78275471.89481662 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 25 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29327157.996818677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165524.27315281235 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605274.2585969133 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24857283.72914655 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201504828.9299068 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39677684.26055824 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224635.08772708537 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136113340.41388777 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 820259.5500143573 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 80016685.18763876 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33705235.5851979 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1517185299.8579023 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50135786.68746992 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283892.00629325834 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171938334.6785261 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036675.9874201531 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101119255.7646172 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42590248.2586835 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1834282350.2125378 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60634230.67676132 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 343222.1873901867 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207949104.32105905 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1253491.7914421982 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122303685.73359886 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51475345.5169156 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2152151689.4811435 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71132674.66605282 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402768.2387045014 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 243961505.64574227 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1470378.8060289086 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143488115.70258096 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60395174.90959305 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2470021028.7497587 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81643051.99010004 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462477.5561413538 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 279982976.179874 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1687954.1330667434 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164695576.91453543 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69340204.29518928 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2788227043.1910014 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92175283.71670865 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522747.92204010184 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 316107844.0453842 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1906031.5436963488 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185948190.46619388 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78296097.5906738 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 26 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271707812.1406806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8966531.127012994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50564.64897692408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30773905.64463607 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185189.97356997622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18059609.777788714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7619659.725812049 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 580758513.2342132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19146844.56191587 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107600.7314091076 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65721886.79783118 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394881.9448069221 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38606524.18851982 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16180322.355842829 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 889809214.327747 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29328902.788817286 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165578.09413567983 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100669867.95102637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605417.3160766435 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59153438.59925088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24864556.225087512 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1201749325.3037562 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39687602.5123257 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224709.37538262492 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136142753.97019485 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 820481.7975108275 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 80036075.56671138 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33716443.993999876 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1517518192.571769 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50148928.98785791 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 283981.1514799058 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 171980924.59305435 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1036970.4791741006 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101144949.22273704 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42603698.349245876 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1834711200.884011 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60649563.3605473 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 343334.5364218564 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 208000696.18385068 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1253835.3651551367 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122333661.43473871 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51492296.56842361 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2152641804.5342555 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71150197.73323679 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 402904.52153082256 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 244020467.77464703 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1470802.9726802525 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143522373.6467408 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60414547.53988791 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2470572408.1845093 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81664347.4632526 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462630.87432096514 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 280054631.810702 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1688431.320549505 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164737209.98724228 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69363336.70960428 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2788888852.2380667 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92198945.35354482 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 522940.98065930686 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 316187461.4129709 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1906594.3077959258 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 185994449.43586808 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78322998.88555433 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 27 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271899054.48447925 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8973191.732901368 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50607.96499766267 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30796484.760934975 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185336.52867008478 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18072608.649549223 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7626271.974009076 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 581045376.7499111 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19156835.470748432 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107665.70544021548 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65755755.47227953 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 395101.777457085 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38626022.4961606 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16190240.728138367 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 890191699.0153443 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29342602.92183656 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165671.10009436257 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100715026.18362418 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 605729.0294164945 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59179436.34277192 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24878753.708423402 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1202257775.6209257 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39705479.15546759 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224826.3825796766 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136202784.39345548 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 820875.1420907611 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 80070963.71286571 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33734305.298306055 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1518134131.33608 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50170519.30420857 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 284121.5601163679 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 172054114.6709514 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1037445.5367029763 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101187084.99209717 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42625131.91441329 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1835434430.3569288 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60674752.0629564 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 343499.05424664717 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 208086084.60806394 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1254389.5989388253 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122382819.83232549 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51517410.4332663 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2153468352.5033045 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71178984.82170434 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 403093.07861979085 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 244118054.54517645 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1471439.119395769 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143578554.67255425 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60443249.09970813 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2471502274.6496897 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81696872.8607012 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 462843.0010460544 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 280164891.2591617 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1689146.9856044617 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164800686.7155579 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69395718.13642043 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2789926501.1222167 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92235084.68404324 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 523177.6819884945 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 316309971.9112594 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1907391.761098963 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 186064979.1339966 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78359045.09197274 tonnes. circ_OL_0
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 28 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 272158934.7874924 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8982009.252715506 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50662.6894068762 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30826604.21846708 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185526.5548056329 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18089782.55483181 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7634748.533987664 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 581435197.2044307 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19170061.75046964 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107747.79205403574 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65800934.65857768 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 395386.8166604071 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38651783.35408446 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16202955.56810625 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 890711459.6213702 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29360589.580004707 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165786.08849682182 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100775265.0986884 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 606125.7589265569 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59213784.15333707 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24896564.884538334 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1202935986.1799092 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39728638.66809759 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 224970.73909855986 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136281387.24981773 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 821374.2521329297 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 80116071.55324285 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33756665.4609501 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1518953232.5736327 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50198430.79344372 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 284294.78793902777 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 172149456.55079928 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1038047.0564668723 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101241448.26913247 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42651964.10958614 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1836394177.2591212 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60707315.467064075 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 343701.73027968995 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 208197316.80121982 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1255091.3719967038 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122446243.65553336 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51548804.02115513 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2154565206.1058106 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71216200.14068455 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 403325.138698927 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 244245177.05164027 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1472243.4351899899 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143651039.04193467 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60479127.48586681 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2472736234.9525084 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81738859.60760786 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 463104.06863508257 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 280308312.31939435 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1690051.8408729597 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164882464.40698338 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69436156.30850242 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2791301481.9354954 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92281736.62505063 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 523468.5348794645 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 316469328.64485127 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1908399.0236872435 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 186155843.23558044 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78404029.8430971 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 29 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 272505307.1120174 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8993458.54218389 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50730.25095911321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30866019.711974874 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 185767.95301864765 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18112504.40754316 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7645329.561797838 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 581954755.6912184 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19187235.684672214 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107849.13438239128 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65860057.89883937 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 395748.91397992935 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38685866.1331515 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16218827.109821511 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 891404204.2704206 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29383805.072174966 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165925.87681624125 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100854096.08570398 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 606623.0755407637 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59259227.85875979 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24918457.574187104 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1203827960.0140173 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39758250.12758045 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 225145.9732926977 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136382889.55348945 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 821998.5837496348 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 80174837.40266919 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33784109.44084803 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1520028225.751015 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50234065.978492245 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 284505.0689719932 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 172272134.76666653 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1038798.3930467464 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101312168.59009653 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42684896.88546366 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1837651916.0530083 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60748889.849620685 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 343947.51392725244 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 208340441.3863983 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1255967.9313398902 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122528750.69665807 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51587296.97349319 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2156002621.8702526 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71263713.72074923 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 403606.36844037764 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 244408748.00612998 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1473247.0784303546 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143745332.8032201 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60523119.43139601 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2474353327.6875057 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81792411.69098167 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 463420.45209421456 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 280492671.5148169 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1691180.9395183702 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 164988741.96719065 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69485706.12002851 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2793101589.7211823 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92341238.93991047 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 523820.6539082674 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 316674172.1953207 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1909655.0701142598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 186273929.41358855 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78459126.38977602 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 30 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 272946807.33900285 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9008016.587035928 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50810.8299565369 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30916071.83877236 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 186065.10076491436 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18141663.442355286 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7658130.378040479 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 582617006.0316967 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19209072.751950275 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107970.00287852681 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65935136.089035615 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 396194.63559932937 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38729604.68536968 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16238028.334185481 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 892287204.7243912 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29413197.862562276 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 166090.7924087062 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 100954200.33929893 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 607229.4966932918 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59317545.928384036 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24944656.140341885 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1204954230.866875 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39795493.83668373 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 225352.5007632605 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136510572.9567811 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 822758.774031718 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 80249434.6869414 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33816918.488915876 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1521383608.8005931 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50278841.46008066 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 284752.9019366685 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 172426077.69682366 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1039712.3161440601 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101401851.6374862 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42724267.74314507 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1839236134.0163305 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60801127.91147384 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 344236.9963357158 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 208520041.47158164 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1257034.1749534227 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122633380.9186127 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51633284.280790314 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2157813156.685478 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71323414.36286715 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 403937.453059741 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 244614005.2463395 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1474467.092124231 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143864910.19973963 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60575676.35402129 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2476390179.3546343 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81859654.80854201 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 463792.9222909984 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 280723860.59828204 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1692553.4549239813 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 165123426.56431517 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69544876.90518759 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2795367450.4316335 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92415953.5149775 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 524234.9240568888 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 316931048.95472646 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1911181.2284745786 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 186423578.9659491 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78524902.07039961 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 31 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 273413157.3751079 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9023356.469509857 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 50896.33018857952 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30968741.902713966 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 186380.3963390596 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18172674.434450224 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7670922.479835322 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 583316531.085854 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19232082.57566117 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 108098.25322659075 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 66014141.18494803 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 396667.5789605471 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38776121.17351209 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16257216.486877741 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 893219904.7966013 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29444075.48247906 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 166264.4546805393 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 101059540.46718217 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 607868.7161203844 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59379567.91257391 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24970638.589817636 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1206136058.4413333 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39834440.49765225 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 225569.8368317664 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136644049.80699122 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 823559.2827612979 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 80328168.9665209 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33849435.18560311 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1522804436.641722 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50325633.04885528 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 285013.70521887566 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 172586738.37834305 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1040674.0693304312 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101496445.1646573 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42763287.77916976 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1840895738.3631558 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60855718.09837756 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 344541.4945317342 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 208707478.93335423 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1258156.2203375224 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122743740.03364564 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51678841.72346334 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2159709847.367564 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71385803.14789996 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 404285.61171721993 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 244828219.48836535 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1475750.3893403725 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 143991034.90263444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60627742.00279047 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2478523956.3719816 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 81929894.71626708 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 464184.60078066215 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 280965031.9656259 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1693997.1642921409 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 165265423.03833723 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69603477.81176913 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2797740088.0142555 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92493997.85689422 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 524670.3802205924 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 317199017.14066404 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1912786.0908413366 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 186581352.8259736 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78590032.36400834 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 32 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 274056503.29711986 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9044518.365231307 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 51014.280700763724 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 31041402.068309676 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 186815.35743298157 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18215455.165140115 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7688569.624440287 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 584281549.968872 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19263825.419243343 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 108275.17899486705 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 66123131.433341585 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 397320.02060143015 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38840292.26954692 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16283687.203785187 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 894506596.6406252 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29486582.135796934 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 166502.7758066171 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 101204860.79837358 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 608746.5186093135 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59465129.37395369 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 25006294.962108284 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1207758992.8240743 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39887887.985129036 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 225867.9611731815 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 136827345.72442263 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 824657.8411289551 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 80436218.00890788 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33894039.00516936 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1524754274.6087506 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50389818.030589305 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 285371.4544285738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 172807119.92935997 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1041993.3258959048 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101626201.04541782 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42816812.36264926 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1843172251.6741223 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60930600.577067256 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 344959.06136952486 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 208964590.74287397 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1259695.3529972418 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122895121.89453292 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51741315.91058025 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2162311576.8658113 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71471383.12354532 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 404762.96416983556 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 245122061.5563879 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1477510.2104739517 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 144164042.74364847 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60699141.073781215 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2481450902.0575094 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 82026216.65360191 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 464721.6222898548 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 281295756.9634887 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1695976.9630674173 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 165460146.74905252 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69683824.18800104 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2800993751.8636756 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92601022.23171073 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 525267.2749926466 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 317566489.36051166 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1914986.48129674 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 186797712.50454617 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78679320.83767305 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 33 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 274687985.65634835 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9065290.026912376 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 51130.05615710511 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 31112722.35063744 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 187242.29766585576 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18257447.001602035 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7705891.348457654 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 585228773.5077147 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19294982.911764946 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 108448.84217937913 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 66230111.85683323 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 397960.43095074146 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38903280.02423981 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16309669.789811242 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 895769561.3590822 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29528244.04758702 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 166735.8701568105 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 101347501.36302912 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 609605.4479662494 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59549113.04687754 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 25041169.331267778 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1209347033.4178274 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39940163.28093644 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 226159.46367612784 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 137006700.70059767 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 825732.3062973302 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 80541897.35735133 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33937652.09956753 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1526661349.4089866 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50452577.356910065 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 285721.25743210944 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 173022606.43884692 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1043283.2795744224 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101753074.831819 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42869148.07592708 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1845398199.830477 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 61003819.79110814 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 345367.2787903336 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 209215991.67060873 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1261200.2989555122 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 123043141.31200096 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51802391.2863618 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2164855517.615931 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71555062.22530633 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 405229.57530204405 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 245409376.9023705 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1479230.628809937 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 144333207.79218337 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60768941.50324584 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2484312835.4013944 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 82120381.9207342 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 465246.5598135893 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 281619076.95302355 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1697912.4336954004 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 165650510.551358 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69762362.6209283 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2804174565.4355016 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92705650.30630213 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 525850.6512047087 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 317925733.79332805 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1917137.3588633481 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 187009227.84044114 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78766594.05575582 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 34 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 275571661.51693463 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9094357.214211557 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 51292.068562554115 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 31212525.632458717 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 187839.7439320744 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18316209.01083444 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7730130.805275709 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 586554287.2985941 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19338583.69271372 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 108691.86078755262 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 66379816.77956513 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 398856.60035006935 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38991423.0380884 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16346028.975038325 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 897536913.0802548 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29586486.425565206 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 167061.27655271525 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 101547107.92667165 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 610804.8813653874 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59666637.06534234 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 25089854.950495467 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1211564618.4985485 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 40013141.09266559 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 226566.33521211156 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 137257157.0937677 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 827232.2904783111 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 80689428.75770493 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 33998526.11103377 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1529323680.5077486 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50540175.17593165 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 286209.50327528984 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 173323376.84806317 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1045083.7630324422 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 101930161.92996521 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42942196.88968655 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1848505119.7925432 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 61106017.24663333 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 345936.9928778008 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 209566890.481361 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1263300.8629898687 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 123249742.9265049 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51887628.95679528 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2168406283.286864 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71671859.31733511 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 405880.7389891709 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 245810404.1146588 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1481631.6693152778 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 144569323.923045 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60866355.98374126 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2488307446.7811937 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 82251800.3181389 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 465979.118961607 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 282070306.96773666 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1700613.6042639085 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 165916185.00420812 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69871964.3257227 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2808613754.4781585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 92851670.7478629 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 526664.6914524983 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 318427100.4763427 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1920138.9447025075 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 187304421.67694125 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 78888380.21572058 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 35 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 276533945.4281942 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9126010.095014498 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 51468.492903357765 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 31321206.990263153 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 188490.3364801643 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18380198.238785185 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7756526.50120228 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 587997713.1654835 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19386063.013918128 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 108956.49729875813 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 66542838.81627176 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 399832.4891722042 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 39087406.88001453 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16385622.518928185 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 899461480.902774 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29649867.493639316 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 167415.07134414153 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 101764470.64228052 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 612109.1913097284 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59794615.52124383 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 25142787.894398518 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1213976105.685153 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 40092485.47557999 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 227008.65163256862 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 137529512.99487087 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 828863.1330097783 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 80849830.7709223 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 34064703.20249705 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1532218272.8932953 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50635404.137219876 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 286740.2829798383 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 173650349.07152498 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1047041.0968044348 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 102122676.08844961 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 43021609.399442494 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1851882701.1535618 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 61217117.70146959 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 346556.29471184005 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 209948358.07539982 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1265584.4190571934 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 123474342.77807002 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 51980285.6889877 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2172266376.270885 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71798831.2657194 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 406588.55022134574 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 246246367.0792746 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1484241.6956798546 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 144826009.46769089 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60972249.391961165 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2492650051.3882174 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 82394657.33419245 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 466775.4065978037 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 282560811.91018564 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1703549.8839240577 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 166204983.683277 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69991100.7567809 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2813439329.2291484 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 93010400.76570019 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 527549.5047579606 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 318972105.96795267 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1923401.651473931 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 187625309.09812894 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 79020757.86377515 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 36 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 277450983.78729975 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9156174.691484263 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 51636.621961844365 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 31424778.267783396 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 189110.33886798934 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18441178.762218833 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7781681.099961256 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 589373270.7041419 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19431309.90862278 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 109208.69088648802 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 66698195.73255213 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 400762.4927539418 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 39178877.665165 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16423354.41706665 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 901295557.620985 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29710241.833788503 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 167751.88602374113 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 101971613.19732101 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 613351.0437016108 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59916576.568111114 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 25193180.361933425 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1216272117.5676599 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 40168021.78520627 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 227429.70999058397 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 137788826.9935839 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 830415.7044947883 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 81002534.41155854 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 34127699.772782564 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1534973941.5196736 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50726056.32244531 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 287245.5530094567 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 173961606.7620833 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1048904.3596316923 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 102305937.8705521 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 43097205.28378512 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1855097953.394173 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 61322878.58423259 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 347145.80781846866 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 210311492.04771778 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1267758.2256889937 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 123688148.1905229 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 52068485.58610176 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2175940950.260155 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 71919700.84601998 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 407262.2990085735 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 246661377.33335227 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1486726.1784732104 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 145070358.51049414 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 61073049.27437723 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2496783947.1261463 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 82530642.85645086 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 467533.373983435 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 283027723.32001275 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1706344.927066583 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 166479891.00169674 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 70104503.9104628 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2818032791.4253945 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 93161495.79043178 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 528391.7146926689 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 319490896.4233161 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1926507.3449560367 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 187930761.67415085 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 79146763.28798284 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 37 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 278694586.9937561 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9197081.147052655 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 51864.62315084191 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 31565232.122894317 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 189951.12916847572 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18523874.94795684 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7815793.456727115 tonnes. circ_CL_30
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 591238675.5138265 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19492669.591975365 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 109550.69266998433 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 66908876.515218526 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 402023.67820467136 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 39302921.94377201 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16474522.952215439 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 903782764.0338978 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29792092.529354177 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 168208.3449755751 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 102252520.90754284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 615034.1480485601 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 60081968.93958713 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 25261473.38567769 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1219383942.777608 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 40270390.318425804 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 228000.31407843466 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 138140279.80819505 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 832519.7848559455 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 81209481.87545447 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 34213070.60046289 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1538708486.624102 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50848905.10688946 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 287930.27791487763 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 174383412.6880947 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1051429.3905822348 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 102554288.05770278 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 43199650.277001515 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1859455154.8059 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 61466202.1660841 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 347944.6766894419 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 210803598.96139777 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1270704.0951312934 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 123977890.07553205 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 52188008.2081354 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2180920609.0164146 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 72083499.22527884 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 408175.3059167044 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 247223785.23470086 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1490092.9839636455 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 145401492.09336174 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 61209646.5567014 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2502386063.2269387 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 82714921.37276164 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 468560.5067550822 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 283660450.5429005 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1710132.583243322 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 166852427.07700843 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 70258178.1948224 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2824257545.2388563 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 93366249.69744375 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 529532.9892598252 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 320193926.6709692 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1930715.915950823 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 188344690.64671937 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 79317513.8106859 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 38 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 279854488.7009846 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9235234.367793893 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 52077.2785758162 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 31696232.642581128 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 190735.32954677334 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18601005.214685652 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7847609.859776645 tonnes. circ_CL_30
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 592978528.0746691 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19549899.423087217 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 109869.67580744576 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 67105377.29474871 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 403199.9787721178 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 39418617.34386523 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16522247.556789733 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 906102567.4483547 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29868420.27076837 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 168633.90780935026 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 102514521.94691648 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 616603.3944315602 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 60236229.473044775 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 25325143.892291512 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1222285260.4909694 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 40365829.88185485 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 228532.28303495797 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 138467957.6845688 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 834481.4473392577 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 81402421.78565732 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 34292661.03993854 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1542190253.3659222 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50963435.90164255 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 288568.6406627055 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 174776658.48337254 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1053783.45377342 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 102785822.65888056 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 43295158.80437229 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1863517333.710172 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 61599821.42662938 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 348689.44457761984 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 211262385.72255528 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1273450.5021876763 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 124248013.7769061 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 52299436.521386676 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2185563099.1927257 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 72236206.95161633 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 409026.47578684083 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 247748112.96173802 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1493231.782715388 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 145710204.89493212 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 61336993.20041713 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2507608864.6752877 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 82886720.18282436 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 469518.07285898575 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 284250328.224589 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1713663.7318390328 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 167199734.27116907 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 70401444.27473569 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2830060746.3905454 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 93557137.2641801 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 530596.9585714351 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 320849346.31728977 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1934639.4446724465 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 188730587.5291201 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 79476698.9404396 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 39 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 281157738.3859891 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9278102.804492498 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 52316.21530113102 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 31843423.033761095 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 191616.4463600583 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18687667.72685562 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7883358.334836104 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 594933402.602176 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19614202.07813513 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 110228.08089541801 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 67326162.88151868 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 404521.65399204526 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 39548611.11212018 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16575870.269378927 tonnes. circ_CL_40
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 908709066.8183638 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29954171.283188544 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 169111.9448033096 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 102808902.72927642 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 618366.1800700569 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 60409554.49738471 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 25396665.310916208 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1225544405.2965493 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 40473037.65092077 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 229129.83838317395 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 138836048.9293741 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 836684.9932372081 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 81619152.21267784 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 34382064.17557706 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1546101340.4600716 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 51092087.18495695 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 289285.70708056475 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 175218387.5076891 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1056427.7491457 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 103045903.13450655 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 43402442.56713851 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1868080338.186076 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 61749914.59049619 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 349526.02852190915 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 211777736.2509246 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1276535.5134553362 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 124551440.99846977 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 52424601.87731161 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2190777961.450901 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 72407741.99603552 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 409982.57530597673 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 248337084.9941601 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1496757.5370903355 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 146056978.86243343 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 61480039.321474195 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2513475584.7157354 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 83079698.59721074 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 470593.6848180136 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 284912926.87502563 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1717630.2055108487 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 167589857.9955979 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 70562371.76397073 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2836579374.5242863 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 93771557.72460942 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 531792.0864684732 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 321585567.03999704 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1939046.6541563289 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 189164058.33404103 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 79655507.5719415 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 40 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 282795929.3333595 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9331988.62985322 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 52616.55988199595 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 32028442.04366025 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 192724.01431400262 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18796602.909842223 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7928294.3351271665 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 597390689.0232315 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19695030.81617621 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 110678.59776671541 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 67603691.39636739 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 406183.0059229618 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 39712013.88660009 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16643274.269815527 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 911985448.7131045 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 30061953.175230347 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 169712.74961675354 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 103178940.74907471 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 620581.7087003097 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 60627424.86335792 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 25486554.61470867 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1229640608.7538571 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 40607778.151148416 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 229880.85019631684 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 139298678.4593645 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 839454.4462269612 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 81891542.60383816 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 34494426.672535695 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1551016859.5133164 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 51253777.03315856 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 290186.9212563361 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 175773555.68827727 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1059751.118383295 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 103372774.12670179 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 43537277.56348888 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1873815154.676395 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 61938552.7467314 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 350577.44900031196 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 212425432.46161082 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1280412.7775658632 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 124932790.4893642 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 52581909.962536514 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2197332037.4398375 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 72623328.46030432 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 411184.2007939914 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 249077309.23494434 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1501188.7126788017 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 146492806.85202706 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 61659819.99030265 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2520848920.2032895 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 83322234.27837054 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 471945.5134920301 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 285745682.26650393 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1722615.2780478734 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 168080166.32123005 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 70764625.36719587 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2844772000.2107983 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 94041041.81478697 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 533294.1201828112 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 322510850.80830634 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1944585.6332488398 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 189708845.3625212 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 79880233.96856377 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 41 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 284398278.792611 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9384695.503411932 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 52910.33331390913 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 32209413.07816576 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 193807.3501210622 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18903154.732651558 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7972247.194153092 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 599794213.2121089 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19774091.126514282 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 111119.25791458518 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 67875147.94812566 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 407808.009633551 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 39871841.62081409 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16709203.558354417 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 915190147.6316075 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 30167372.538402777 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 170300.35829834643 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 103540882.81808569 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 622748.591552967 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 60840528.50897657 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 25574469.58161452 tonnes. circ_CL_50
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1233646872.9525833 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 40739559.19871039 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 230615.36380076114 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 139751150.1548238 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 842163.0706980501 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 82157950.18754375 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 34604320.79297578 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1555824413.6566753 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 51411914.88282514 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 291068.3375816694 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 176316527.94818103 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1063001.479928727 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 103692464.42512847 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 43669150.50801699 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1879423988.8617105 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 62123046.904675744 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 351605.7698300763 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 213058900.0981652 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1284204.8660355345 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 125305762.50419533 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 52735761.997997016 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2203742133.651626 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 72834178.92652644 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 412359.42549273523 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 249801272.24814934 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1505522.5355893897 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 146919060.58326262 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 61835650.8879718 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2528060278.4415517 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 83559441.46428777 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 473267.64127811696 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 286560142.06897664 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1727490.8288222847 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 168559702.60058838 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 70962435.27743074 tonnes. circ_CL_100
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2852784634.3728247 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 94304605.35469502 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 534763.1517727083 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 323415806.14438707 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1950002.9160047998 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 190241663.45069712 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 80100022.82646595 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 42 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 286176062.6482664 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9443173.027371358 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 53236.2707437627 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 32410197.85805729 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 195009.29573718485 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 19021372.459307496 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 8021012.263929248 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 602460888.9955919 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19861807.41245342 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 111608.16405936552 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 68176325.11796294 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 409610.9280577351 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 40049168.21079799 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16782351.16301866 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 918745715.3429183 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 30284330.97530312 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 170952.26945561133 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 103942452.37786877 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 625152.607629537 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 61076963.96228845 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 25672005.151819386 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1238091563.4114673 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 40885761.14894167 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 231430.2541607061 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 140253138.1735777 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 845168.102054559 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 82453510.96061957 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 34726240.46719204 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1561158062.1941924 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 51587357.52739428 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 292046.2060136032 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 176918916.87281898 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1066607.5238109406 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 104047137.96797307 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 43815454.11707651 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1885646589.614763 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 62327729.9900064 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 352746.61720116757 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 213761687.17690945 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1288411.9172314494 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 125719548.3041807 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 52906449.671641015 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2210853677.369401 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 73068102.45261861 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 413663.25146754755 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 250604457.48099986 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1510330.5977536582 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 147391958.6403888 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 62030722.514993526 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2536060765.1240487 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 83822605.63117495 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 474734.44549978065 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 287463726.1427558 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1732899.8987570866 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 169091713.3192414 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 71181890.92647827 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2861674070.7769837 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 94597009.98456965 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 536392.9345323204 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 324419788.44858617 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1956012.9955901532 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 190832786.47142273 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 80343862.46569243 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 43 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 288303786.34484625 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9513161.295658287 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 53626.36585622288 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 32650505.211917404 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 196447.83291440626 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 19162860.220916685 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 8079376.273816069 tonnes. circ_CL_30
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 605652474.5404617 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19966789.814883813 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 112193.3067280558 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 68536786.14875309 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 411768.7338235673 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 40261399.85321178 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16869897.17784889 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 923001162.7360778 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 30424309.644923106 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 171732.48186812646 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 104423067.085589 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 628029.7588140275 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 61359939.48550682 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 25788736.49118601 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1243411014.7009602 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 41060736.7955972 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 232405.52041765867 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 140853922.60128352 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 848764.5472729265 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 82807240.42396212 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 34872154.75231108 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1567541414.813012 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 51797328.4629817 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 293216.5255219464 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 177639859.98447996 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1070923.2613534124 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 104471613.64663191 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 43990551.25921937 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1893093839.997441 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 62572696.081525065 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 354111.9903880045 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 214602787.4738473 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1293446.944364333 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 126214769.92928267 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 53110729.73470869 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2219364820.663891 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 73348063.70006852 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 415223.67815348395 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 251565714.9632146 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1516084.9162769662 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 147957926.21193394 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 62264185.44421371 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2545635801.3303485 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 84137562.13307786 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 476489.92552145914 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 288545141.1485256 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1739373.5070958086 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 169728427.0364006 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 71444536.75327471 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2872313003.2230663 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 94946961.65335065 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 538343.4680064864 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 325621360.67721933 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1963205.8946048683 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 191540246.15715513 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 80635691.17438301 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 44 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 290680365.416638 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9591335.286928412 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 54062.08590848878 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 32918918.553790536 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 198054.61924426415 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 19320896.179107863 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 8144566.450842268 tonnes. circ_CL_30
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 609217343.1481494 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 20084050.801789 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 112846.88680645466 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 68939406.1615628 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 414178.9133183539 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 40498453.79049855 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16967682.443388186 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 927754320.8796614 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 30580658.834172387 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 172603.93413797911 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 104959893.76933527 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 631243.3738925809 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 61676011.40188918 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 25919118.66535069 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1249352540.8069549 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 41256174.50204863 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 233494.8360957242 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 141524964.81353948 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 852781.5691744923 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 83202335.8349027 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 35035132.52099813 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1574671251.559658 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 52031853.78408545 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 294523.70433562493 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 178445111.50315717 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1075743.6891431734 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 104945728.28806879 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 44186124.58164382 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1901411985.4705331 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 62846308.9561461 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 355637.03251975676 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 215542247.57897073 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1299070.7767857206 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 126767903.6776257 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 53338898.638169356 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2228871272.633143 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 73660764.12820686 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 416966.5835200768 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 252639383.65478417 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1522512.1540989545 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 148590079.06718308 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 62524949.905311614 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2556330559.7957535 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 84489350.15682246 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 478450.69405887637 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 289753018.5710555 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1746604.1496455455 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 170439599.08364263 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 71737896.7843242 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2884196069.6063523 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 95337837.2352891 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 540522.0997540507 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 326963446.70225245 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1971239.942219598 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 192330437.3207574 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 80961646.76876783 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 45 PV_ICE
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 292972678.30429214 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9666737.468911257 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 54482.35666786454 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 33177814.784131482 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 199604.4338729281 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 19473328.668299675 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 8207445.1846993845 tonnes. circ_CL_30
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 612655812.4796306 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 20197154.074763272 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 113477.29294551827 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 69327750.50707419 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 416503.63526134996 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 40727102.52428626 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 17062000.54417387 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 932338946.65497 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 30731463.763251513 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 173444.4811662166 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 105477686.23001716 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 634343.0224974024 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 61980876.38027282 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 26044876.957365684 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1255083358.7969072 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 41444681.19259985 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 234545.5200067279 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 142172209.42938557 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 856656.131142524 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 83583419.55575013 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 35192330.40482449 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1581548235.298796 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 52258061.83981114 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 295784.5250288294 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 179221805.37805665 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1080393.1640610883 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 105403028.80779846 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 44374762.04223545 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1909435134.1261075 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 63110218.35449273 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 357107.99005690834 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 216448390.43302009 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1304495.1641899545 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 127301420.95064364 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 53558975.68476441 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2238040585.382373 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 73962374.86917442 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 418647.67787058087 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 253674975.4879835 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1528711.4542497355 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 149199813.09348935 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 62776466.529991694 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2566646036.6386347 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 84828662.25465423 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 480341.9252031932 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 290918059.43230957 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1753578.3623151737 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 171125549.89203125 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 72020852.99084792 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2895657711.0240116 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 95714850.67732444 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 542623.4677022506 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 328257936.54809034 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1978989.0675110093 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 193092604.88563365 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 81276042.55495977 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 46 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 295743981.7489755 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9757895.324276956 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 54990.44516199224 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 33490808.712152194 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 201478.0902320443 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 19657612.7093894 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 8283462.753101181 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 616812767.6466558 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 20333890.85781182 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 114239.42568670984 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 69797241.39910528 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 419314.11980002414 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 41003528.58592086 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 17176026.896776572 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 937881553.5443368 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 30913779.790195856 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 174460.66112881282 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 106103674.08605859 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 638090.3457356442 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 62349444.462452255 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 26196912.539174747 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1262011636.8586462 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 41672576.498059645 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 235815.74501329337 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 142954696.44614428 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 861340.2857507524 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 84044131.00696872 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 35382374.890063286 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1589862169.9675863 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 52531536.2178425 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 297308.79503670795 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 180160789.94992572 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1086014.1498269148 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 105955882.57246788 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 44602815.42452201 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1919134724.980189 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 63429271.79552933 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 358886.30508972215 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 217543872.43353403 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1311052.9809167515 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 127946417.00942464 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 53825037.96763298 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2249125832.072753 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 74327007.37321624 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 420680.0379156171 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 254926954.9171422 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1536206.1020370582 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 149936951.4463819 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 63080537.7104129 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2579116939.1653104 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 85238873.8271503 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 482628.33025385905 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 292326536.3088225 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1762009.8410759114 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 171954830.5500511 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 72362933.07009003 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2909514269.5710473 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 96170641.31343117 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 545163.9177613085 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 329822910.85532695 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1988357.3772798944 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 194014027.83898902 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 81656131.53223194 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 47 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 298426088.4436129 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9846119.18681145 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 55482.18039733157 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 33793728.6653373 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 203291.44137331904 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 19835965.412435964 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 8357033.631639096 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 620835927.6886117 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 20466226.651613563 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 114977.0285397188 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 70251621.3288829 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 422034.14651193627 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 41271057.64049071 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 17286383.214583445 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 943245766.9336113 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 31090227.64938445 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 175444.13281362585 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 106709513.99242878 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 641717.0523432674 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 62706149.8685454 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 26344054.477903068 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1268716911.5916977 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 41893136.426685765 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 237045.0846356395 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 143711997.23223543 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 865873.6692005788 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 84490013.31504433 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 35566302.31591687 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1597908499.985008 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 52796208.1357096 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 298784.0025835234 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 181069550.94345358 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1091454.2100389693 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 106490941.34926605 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 44823528.33554633 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1928522110.1252112 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 63738055.699707605 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 360607.38056738756 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 218604093.59264985 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1317399.717830815 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 128570652.24902248 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 54082536.364782654 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2259854272.2384925 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 74679903.2637057 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 422646.9813204047 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 256138636.241846 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1543459.5156800228 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 150650363.14877945 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 63374821.59286968 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2591186434.3517685 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 85635881.70542283 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 484841.1415842449 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 293689677.80416805 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1770169.9314242466 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 172757418.71822387 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 72694002.438147 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2922924819.8279414 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 96611761.17817841 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 547622.5970177903 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 331337512.51682204 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1997424.1443416267 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 194905792.47029212 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 82023986.38569231 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 48 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 301554261.7966884 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9949015.740642665 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 56055.697126935374 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 34147027.856440775 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 205406.37465738508 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 20043980.318865594 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 8442840.233689947 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 625528187.7182249 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 20620571.482360378 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 115837.3036341245 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 70781570.11553808 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 425206.5464380353 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 41583080.00013516 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 17415093.11765972 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 949502113.6397625 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 31296020.821421195 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 176591.16683225802 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 107416112.37463571 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 645946.9209181786 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 63122179.68140466 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 26515667.76570298 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1276537348.6846414 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 42150377.936724104 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 238478.8771642455 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 144595245.6290342 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 871161.0049894517 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 85010050.83474803 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 35780818.92646208 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1607293024.6211991 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 53104897.948900044 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 300504.5536178505 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 182129449.03762066 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1097799.0130091403 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 107114986.3752241 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 45080948.26820057 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1939470722.241359 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 64098193.81509645 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 362614.69010921294 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 219840641.36917812 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1324801.9879626809 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 129298704.77930689 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 54382859.61981181 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2272366971.799805 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 75091489.68129297 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 424941.04936860275 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 257551833.70073545 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1551919.252981073 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 151482423.1833901 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 63718048.17004586 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2605263221.3582435 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 86098916.42561845 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 487421.96813846764 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 295279524.9468261 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1779687.1358879283 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 173693486.25798962 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 73080132.33753711 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2938565694.2934284 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 97126244.20061798 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 550490.1820781209 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 333104009.34199774 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2007998.8159697722 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 195945867.5144763 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 82453019.60724808 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 49 PV_ICE
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 304915502.3942395 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 10059578.69066125 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 56671.94421344149 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 34526649.90745382 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 207678.88286365996 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 20267493.55469686 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 8535039.9303812 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 630570048.6145515 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 20786415.907388266 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 116761.67426388372 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 71351003.19205764 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 428615.3087474477 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 41918349.85388205 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 17553392.662696604 tonnes. circ_CL_40
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 956224594.8348645 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 31517146.747914523 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 177823.6612254071 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 108175356.47666182 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 650491.938125667 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 63569206.153067194 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 26700067.192021202 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1284940451.6482494 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 42426785.361139916 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 240019.49515704575 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 145544300.92255974 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 876842.2765198754 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 85568834.0241309 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 36011318.20956392 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1617376748.214914 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 53436586.858492665 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 302353.2952092108 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 183268315.39508185 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1104616.5388516842 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 107785526.20307711 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 45357547.40792278 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1951235066.4444416 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 64485164.20962117 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 364771.5552995069 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 221169318.78621614 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1332755.7681123149 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 130081001.24513541 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 54705558.6162103 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2285811936.603327 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 75533741.56074978 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 427406.03815757454 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 259070322.17735037 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1561009.2874393729 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 152376476.28719422 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 64086847.02307272 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2620388806.7622066 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 86596449.79009357 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 490195.0805260609 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 296987824.4833139 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1789913.4246535157 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 174699295.9999435 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 73495031.04720314 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2955371900.3007436 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 97679059.05003479 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 553571.4180643447 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 335002119.93809533 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2019361.359042944 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 197063433.89442506 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 82914018.17354493 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 50 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 308919064.63062155 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 10191269.844147827 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 57405.954020895944 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 34978816.44044199 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 210385.6596540924 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 20533719.409209505 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 8644858.675325524 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 636575391.9691246 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 20983952.63761813 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 117862.68897506535 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 72029252.99153991 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 432675.4739330964 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 42317688.63565102 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 17718120.780113094 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 964231719.3076285 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 31780529.065943655 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 179291.68092818148 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 109079689.54263815 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 655905.4920257573 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 64101657.86209249 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 26919704.69505584 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1294949357.829408 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 42756013.26456168 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 241854.51978583168 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 146674717.32168832 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 883609.2189009791 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 86234398.7002486 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 36285865.08840479 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1629387435.642937 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 53831660.342667244 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 304555.324763754 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 184624815.0754721 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1112736.8697104158 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 108584203.81455679 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 45687003.66253182 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1965247535.112896 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 64946083.27449149 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 367340.5897798743 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 222751901.74667147 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1342229.487447502 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 131012791.7918617 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 55089924.24659756 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2301826186.5101323 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 76060506.20631588 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 430342.0775637167 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 260878988.41787076 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1571836.3952512974 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 153441379.7691671 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 64526122.02922958 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2638404837.9073625 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 87189060.01637088 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 493498.1248579709 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 299022574.00395244 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1802093.9209419314 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 175897312.41719428 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 73989215.42913097 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2975389712.6847734 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 98337514.8570096 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 557241.4673220231 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 337262952.73880476 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2032895.2438078865 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 198394563.2469258 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 83463111.93124261 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 51 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 313256588.25773627 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 10333946.154894086 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 58201.192035041204 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 35468700.9244157 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 213318.22510171655 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 20822152.77577582 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 8763838.067369785 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 643081677.4097966 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 21197967.103737514 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 119055.54599628328 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 72764079.7175005 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 437074.3221045327 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 42750338.68550049 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 17896589.86817948 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 972906766.561858 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 32065881.691226657 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 180882.15698517932 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 110059458.51058559 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 661770.623025852 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 64678524.5952251 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 27157663.483439397 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1305793167.0910406 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 43112704.04786539 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 243842.6148571309 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 147899428.55351582 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 890940.6326523676 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 86955482.12967956 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 36583313.573892 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1642400006.759151 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 54259689.28264286 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 306941.038849313 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 186094468.55395812 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1121534.5662123114 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 109449503.92989653 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 46043941.84511647 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1980428868.082209 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 65445450.37112975 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 370123.92287970096 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 224466497.4715718 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1352493.4666997134 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 132022308.59309137 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 55506352.1262808 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2319176281.3322043 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 76631211.45961675 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 433523.0296778045 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 262838526.38918537 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1583566.6572538575 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 154595113.2562867 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 65002039.606010415 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2657923694.582194 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 87831103.42633612 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 497076.6959863198 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 301227054.2216875 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1815290.4656948105 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 177195262.5902074 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 74524622.70300952 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2997077331.212422 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 99050896.42363763 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 560767.4137569807 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 339712375.20295477 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2047558.0713110892 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 199836730.10582942 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 84058008.90221876 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 52 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 317004538.180866 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 10457229.32609138 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 58888.33809122727 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 35891998.3336965 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 215852.18442709948 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 21071381.115949575 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 8866645.300621202 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 648703602.2944914 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 21382891.86053345 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 120086.2650805624 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 73399025.83142166 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 440875.26109260693 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 43124181.19576112 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 18050800.718056608 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 980402666.4081177 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 32312448.034535363 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 182256.44910413717 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 110906053.32914716 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 666838.5417007714 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 65176981.27557261 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 27363277.950927563 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1315163041.943522 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 43420911.977335595 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 245560.48000583297 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 148957672.08176133 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 897275.5309961824 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 87578552.98309976 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 36840331.65825291 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1653643856.5824223 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 54629538.79800811 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 309002.4770277555 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 187364360.78788942 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1129136.4442249094 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 110197188.95400284 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 46352363.54634955 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1993546692.876061 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 65876941.472389214 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 372528.9340878842 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 225948038.4111583 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1361362.3243810786 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 132894607.78788207 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 55866177.44438613 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2334168081.0966067 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 77124344.1467704 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 436271.61391572835 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 264531716.03442714 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1593702.4946039906 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 155592026.6217618 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 65413268.54098794 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2674789469.317147 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 88385877.6993841 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 500168.85325398407 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 303131892.5725848 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1826693.2827137106 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 178316790.12636703 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 74987255.25485924 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 3015817080.9179287 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 99667312.28257981 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 564203.1440543853 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 341828862.2595073 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2060227.8679987553 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 201082871.81267345 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 84572045.07094066 tonnes. circ_OL_0
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 53 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 274332.6300747871 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 9023.758932796265 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 50.29591875699615 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 30983.415993694947 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 185.47412331874656 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 18242.363812576416 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 7525.014812638947 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 320924358.3146163 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 10586165.909162952 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 59606.99469046377 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 36334706.94546937 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 218502.34384370263 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 21332038.35143858 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 8974166.97808736 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 654583332.4951166 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 21576296.735140808 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 121164.24997941712 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 74063088.74908097 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 444850.5002175118 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 43515167.04899463 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 18212083.234255835 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 988242306.6756182 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 32570321.2009068 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 183693.76230417308 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 111791470.55269292 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 672138.8605397268 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 65698295.74655061 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 27578321.30609371 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1324962592.2885265 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 43743253.435365036 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 247357.12150587814 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 150064443.61239406 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 903900.9295448946 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 88230196.07253091 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 37109135.85221064 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1665403316.9964604 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 55016348.54764352 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 311158.44682780973 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 188692486.62465248 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1137086.9224833657 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 110979160.6613203 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 46674928.57909883 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 2007266063.3591082 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 66328219.513630524 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 375044.23218794767 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 227497518.5540486 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1370637.882349278 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 133806908.11308579 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 56242503.315926954 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2349847361.6486607 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 77640090.47961761 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 439146.2403158007 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 266302550.4834446 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1604303.132281932 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 156634655.56485173 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 65843355.251320325 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2692428659.938207 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 88966092.32383724 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 503402.8079540657 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 305124081.32772946 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1838619.0001013952 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 179489747.68734327 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 75471102.8039831 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 3035416181.6079946 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 100311995.19863883 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 567796.4270544758 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 344042405.3207792 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2073478.6650961826 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 202386157.99153593 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 85109653.45885612 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 54 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 2329904.7764011193 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 76638.71057876453 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 427.16282533895895 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 263141.897823953 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 1575.2302075812245 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 154932.24618659203 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 63909.88906304376 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 325035504.6312141 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 10721395.87902952 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 60360.72887469617 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 36799024.13771638 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 221281.85738060114 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 21605418.25077339 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 9086936.78210551 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 660750051.9700134 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 21779141.689940657 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 122294.85125576568 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 74759564.5374515 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 449019.7705228593 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 43925236.89799684 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 18381237.940283064 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 996464599.3088136 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 32840781.140686803 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 185201.2306729429 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 112720104.93718696 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 677697.8876146476 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 66245055.54522022 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 27803860.91417564 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1335240458.0820982 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 44081328.360099845 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 249241.45696684025 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 151225236.59324628 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 910849.7133885461 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 88913645.8210062 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 37391060.362313055 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1677736755.948749 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 55422038.45732529 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 313419.64938096434 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 190085438.20167533 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1145425.4630957479 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 111799300.35949066 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 47013237.9912217 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 2021655075.470111 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 66801524.40825925 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 377682.3018332946 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 229122628.72724184 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1380366.1797303904 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 134763737.76095122 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 56637197.63007033 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2366291946.918378 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 78181010.3591933 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 442161.1770533403 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 268159819.25280827 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1615421.1864317756 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 157728175.1624122 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 66294434.46748416 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2710928818.36664 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 89574627.18835987 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 506794.6117837975 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 307213508.69326365 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1851126.8110199678 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 180719957.23459885 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 75978566.92216744 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 3055971913.195142 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 100988145.04810843 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 571428.0465142544 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 346363991.282484 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2087376.2327834861 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 203753057.4884865 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 85665862.4336774 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 55 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 4487960.20667251 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 147624.6955892635 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 822.8189329060394 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 506874.94961332605 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 3034.274430259339 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 298436.98448906076 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 123105.90622971063 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 329351616.26722974 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 10863367.87455853 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 61152.041232004936 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 37286490.328877866 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 224199.9463502484 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 21892427.778945148 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 9205328.837710261 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 667224219.4240371 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 21992099.68323418 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 123481.81979172879 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 75490763.82419375 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 453396.9039773303 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 44355751.19025449 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 18558826.023690198 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 1005096822.5808451 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 33124725.131752227 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 186783.8553876063 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 113695037.3195099 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 683534.0655541114 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 66819074.60156372 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 28040645.02539201 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1346030737.1724508 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 44436258.34893267 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 251219.7378601696 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 152443902.0711853 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 918144.9358128763 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 89631169.64145644 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 37687040.50133355 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1690685090.8571723 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 55847954.4439247 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 315793.5864529595 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 191547836.77520224 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1154179.730004944 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 112660328.94403091 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 47368414.1580463 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 2036761466.1966045 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 67298426.39262523 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 380451.8950839556 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 230828760.39635658 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1390579.491124452 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 135768271.1095815 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 57051569.824699 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2383556393.4629426 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 78748898.34132585 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 445270.43765981356 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 270109684.0175109 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1627093.542310703 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 158876213.2751325 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 66768002.68991692 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2730351320.7292733 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 90213501.16825898 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 510088.98023567157 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 309407106.553554 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1864258.2113837614 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 182011500.11140916 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 76484435.55513486 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 3077552471.375847 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 101698005.02577409 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 574907.5228115292 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 348801322.238362 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2101422.880456818 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 205188105.12938696 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 86200868.42035276 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 56 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 6750898.898817963 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 222060.65762574982 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 1237.7042514377529 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 762453.6273952601 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 4564.22939746534 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 448916.1706376907 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 185178.89832635713 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 333877493.92331105 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 11012239.807571635 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 61981.81191889817 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 37797647.715138026 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 227259.85646841564 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 22193386.169315714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 9329474.829358833 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 674013035.9081588 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 22215407.58275383 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 124726.47582206862 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 76257499.90358394 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 457986.76915458124 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 44807188.77581033 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 18745045.011163045 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 1014148577.8930078 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 33422468.997779243 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 188443.39676139766 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 114717352.09203021 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 689653.8857904635 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 67420991.38230485 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 28288937.008689884 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1357345431.3126867 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 44808438.18146652 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 253294.16457740866 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 153721795.5368394 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 925794.7111083166 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 90383565.61738504 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 37997405.48045585 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1704262723.8254547 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 56294570.24296529 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 318282.89851364645 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 193081308.93398708 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1163359.460359472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 113563204.11514522 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 47740852.13299307 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 2052602037.9929345 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 67819478.1581726 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 383271.63244988455 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 232617811.2482723 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1401289.1765380688 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 136821625.47588158 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 57484298.78553025 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2401659904.0873203 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 79344386.07338001 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 448260.36638612277 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 272154313.56255746 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1639218.892716665 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 160080046.83661824 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 67227745.43806747 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2750717770.181699 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 90869293.98858732 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 513249.10032236075 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 311690815.87684256 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1877148.6088952634 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 183338468.1973545 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 76971192.09060468 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 3099775636.2760825 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 102394201.90379474 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 578237.8342585985 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 351227318.19112796 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2115078.32507386 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 206596889.55809063 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 86714638.74314183 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 57 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 9330353.64325256 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 306907.9387730511 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 1710.619362659013 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 1053779.9612765766 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 6308.178366400579 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 620442.8019145352 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 255934.00738905315 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 339036403.50544465 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 11181934.372934027 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 62927.64215843966 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 38380300.393434025 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 230747.75446934142 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 22536439.438071202 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 9470985.050042484 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 681751400.2813591 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 22469949.430797413 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 126145.22118138093 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 77131478.92102794 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 463218.6161559699 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 45321768.6789436 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 18957310.342188526 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 1024466397.0572748 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 33761858.128504075 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 190335.057240481 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 115882657.44862224 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 696629.6817923163 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 68107097.91981584 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 28571957.450057235 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1370242705.2680228 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 45232674.59487259 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 255424.09836572973 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 155178427.23257968 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 934514.4561106329 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 91241198.78927393 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 38333995.64572997 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1719739452.5718584 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 56791753.70328342 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 320513.13949097815 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 194824539.62525627 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1173060.1199628536 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 114568779.15675926 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 48096033.841402784 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 2070016217.6244118 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 68350832.81169423 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 385602.1806162269 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 234484392.111754 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1411605.7838150747 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 137896359.52424464 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 57858072.03707554 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2420292982.6769714 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 79909911.9201051 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 450691.2217414758 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 274144244.59825176 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1650151.4476672942 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 161223939.8917303 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 67620110.23274833 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2770569747.729523 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 91468991.0285159 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 515780.2628667245 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 313804097.0847496 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1888697.1115195164 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 184551520.2592155 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 77382148.42842114 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 3120846512.782079 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 103028070.13692683 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 580869.3039919726 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 353463949.5712474 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2127242.775371737 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 207879100.6267007 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 87144186.62409392 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 58 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 12109259.86946703 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 398315.87619328545 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 2220.101744499265 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 1367632.5554458462 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 8186.974906030004 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 805232.4070220656 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 332160.1220495384 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 344594215.9845234 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 11364750.248651102 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 63946.60692700617 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 39008005.584782414 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 234505.34756661818 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 22906018.650058415 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 9623437.280094467 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 690088118.9999775 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 22744173.244373027 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 127673.66833423064 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 78073036.70805058 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 468855.0058018849 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 45876137.496924415 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 19185988.687266503 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 1035582022.0154324 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 34127489.87993824 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 192277.3423548699 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 117138067.831319 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 704144.8679868696 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 68846256.34379023 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 28876152.9169741 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1384137236.4657195 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 45684128.919758186 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 257444.85529789896 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 156747690.21095067 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 943233.3073807961 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 92150888.49191864 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 38653331.866977 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1735572533.9227 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 57275067.63292672 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 322612.3682409277 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 196523517.38028806 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1182321.746774722 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 115542282.59970894 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 48430510.81698002 tonnes. circ_CL_70
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 2087007831.3796823 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 68866006.3460952 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 387779.88118395687 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 236299344.54962546 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1421410.1861686476 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 138933676.70749927 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 58207689.76698296 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2438443128.8366704 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 80456945.05926374 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 452947.3941269859 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 276075171.7189628 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1660498.625562572 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 162325070.8152899 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 67984868.71698593 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2789878426.293653 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 92047883.77243218 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 518114.90707001486 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 315850998.88830054 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1899587.0649564993 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 185716464.92308015 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 77762047.66698895 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 3141313723.7506366 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 103638822.48560081 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 583282.4200130433 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 355626826.0576378 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2138675.5043504247 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 209107859.0308703 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 87539226.61699185 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 59 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 15056126.163116623 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 495248.6072133807 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 2760.3777869545 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 1700454.7364201962 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 10179.3279199716 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 1001190.8936997569 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 412993.42468848714 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 350487948.57823265 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 11558615.710902141 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 65027.15901309176 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 39673649.94745508 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 238490.05359883505 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 23297935.623840038 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 9785103.885548195 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 698928717.8905412 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 23034971.437749583 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 129294.49646335913 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 79071503.25205955 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 474832.0648502103 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 46464012.957596846 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 19428488.59544709 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 1047369487.202851 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 34515220.8044403 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 194195.0086960511 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 118469356.55666435 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 712084.0417234892 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 69630090.29135346 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 29170246.240790892 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1398526273.337002 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 46128674.89180558 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 259434.8387635586 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 158303544.56504613 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 951656.0311611599 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 93047959.70863058 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 38960040.40934897 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1751063000.783386 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 57750091.53916414 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 324674.6688310658 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 198189916.6736038 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1191228.020598831 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 116500643.85953937 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 48749834.577907115 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 2103599728.2297707 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 69371508.18652266 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 389914.49889857316 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 238076288.78216153 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1430800.0100365016 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 139953328.01044816 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 58539628.746465206 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2456136455.6761637 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 80992924.83388121 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 455154.3289660805 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 277962660.89071923 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1670371.9994741718 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 163406012.16135713 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 68329422.91502337 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2808673183.122549 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 92614341.48123972 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 520394.15903358796 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 317849032.9992772 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1909943.9889118434 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 186858696.3122658 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 78119217.08358152 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 3161209910.5689354 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 104235758.12859832 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 585633.9891010947 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 357735405.107835 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2149515.978349514 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 210311380.46317437 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 87909011.25213963 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 60 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 18128875.82122353 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 596322.082023972 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 3323.733181909197 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 2047494.3170768311 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 12256.789681847236 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 1205520.2771670674 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 497279.74048867606 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 356633447.89568967 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 11760762.660564218 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 66153.86980322913 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 40367729.10890874 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 242644.97712342688 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 23706594.390857328 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 9953676.517182672 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 708146966.8667268 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 23338191.862242695 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 130984.5626485651 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 80112621.99424006 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 481064.45013709815 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 47077001.10812279 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 19681347.542898808 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 1059660485.8377649 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 34919514.70376443 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 196136.2919323116 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 119857514.87957166 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 720023.2220771881 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 70447407.82538803 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 29460639.569570944 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1412805169.4460785 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 46570956.39067802 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 261454.34334806717 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 159849551.60190052 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 960078.7632128742 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 93953169.4153131 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 39262123.95792499 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1766421298.7294238 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 58222398.0775916 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 326772.39476382243 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 199844499.18623024 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1200134.3043485603 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 117468771.30733433 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 49063608.34627913 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 2120037428.0127714 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 69873839.7645052 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 392090.4461795781 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 239839446.77056026 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1440189.8454842456 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 140984373.19935566 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 58865092.73463322 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2473653557.2961254 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 81525281.45141873 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 457408.49759533367 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 279834394.35489 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1680245.386619931 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 164499975.09137708 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 68666577.12298734 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2827269686.579473 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 93176723.13833225 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 522726.5490110892 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 319829341.9392201 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1920300.9277556173 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 188015576.9833984 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 78468061.51134147 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 3180885815.8628216 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 104828164.82524592 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 588044.6004268441 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 359824289.52355015 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2160356.4688913035 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 211531178.87541956 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 88269545.89969556 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 61 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 21302506.96149322 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 700713.901340542 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 3905.5841048277416 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 2405927.558513292 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 14402.456616611511 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 1416558.0011590293 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 584333.2613690217 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 362980710.1764132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 11969546.299203418 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 67317.5716491 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 41084595.59180247 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 246936.31099307988 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 24128669.838853497 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 10127783.55894842 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 717667860.287812 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 23651367.320201498 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 132730.11541737142 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 81187921.71858071 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 487501.4509415778 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 47710114.28011706 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 19942508.105547428 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 1072355010.3992118 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 35333188.34119948 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 198142.65918564275 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 121291247.84535913 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 728066.5908900741 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 71291558.7213804 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 29757232.65214638 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1427042160.51061 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 47015009.36219749 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 263555.2029539142 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 161394573.9721375 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 968631.730838572 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 94873003.16264373 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 39571957.19874526 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1781729310.6220088 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 58696830.38319554 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 328967.7467221853 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 201497900.09891608 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1209196.87078707 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 118454447.60390714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 49386681.745344214 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 2136416460.7334096 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 70378651.40419358 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 394380.290490457 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 241601226.22569448 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1449762.0107355674 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 142035892.04517066 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 59201406.29194312 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2491103610.8448167 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 82060472.42519157 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 459792.83425872825 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 281704552.352473 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1690327.1506840643 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 165617336.48643422 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 69016130.83854209 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2845790760.956217 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 93742293.44618961 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 525205.3780269996 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 321807878.4792518 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1930892.2906325632 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 189198780.92769757 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 78830855.38514102 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 3200477911.0676184 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 105424114.46718764 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 590617.9217952703 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 361911204.6060303 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2171457.4305810607 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 212780225.36896104 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 88645579.93173994 tonnes. circ_OL_0
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 62 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 26515568.29295228 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 872189.7069861973 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 4861.342481550347 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 2994696.1923763864 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 17926.96618732971 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 1763212.2119972026 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 727328.8785062231 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 372663621.1630507 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 12271391.776380954 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 68718.60946103447 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 42133867.637171626 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 252702.01452562978 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 24760538.267276183 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 10330658.73914455 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 727751283.3056352 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 23958057.385419164 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 134017.47321363923 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 82260264.95763753 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 493147.51945958287 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 48362606.42219115 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 20125004.651043538 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 1082838945.4482205 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 35644722.99445732 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 199316.33696624392 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 122386662.2781037 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 733593.024393535 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 71964674.57710595 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 29919350.562942497 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1437926607.5908031 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 47331388.60349547 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 264615.2007188487 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 162513059.59856978 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 974038.5293274879 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 95566742.7320207 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 39713696.474841364 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1793014269.733389 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 59018054.21253362 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 329914.06447145325 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 202639456.919036 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1214484.0342614409 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 119168810.88693553 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 49508042.38674029 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 2148101931.875975 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 70704719.82157184 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 395212.928224058 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 242765854.23950216 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1454929.5391953946 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 142770879.04185045 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 59302388.29863924 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2503189594.0185676 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 82391385.43061 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 460511.7919766628 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 282892251.5599684 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1695375.0441293474 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 166372947.1967655 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 69096734.21053818 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2858277256.161153 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 94078051.03964813 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 525810.6557292676 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 323018648.88043493 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1935820.5490633007 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 189975015.3516803 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 78891080.1224371 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 3213364918.3037395 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 105764716.64868635 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 591109.5194818717 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 363145046.2009012 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2176266.0539972535 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 213577083.50659513 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 88685426.03433602 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 63 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 32316451.589410484 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 1063001.0313636484 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 5924.871653847342 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 3649854.057687549 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 21848.897543403742 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 2148954.963413327 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 886448.6037839868 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 381951370.4532037 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 12566596.056140747 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 70148.8380560284 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 43153249.05334712 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 258431.08932006604 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 25382637.73996637 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 10532780.299239287 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 737241963.7787316 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 24254785.654510237 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 135348.6171844961 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 83287772.25290391 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 498738.64487041795 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 49000445.13066651 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 20306370.766387574 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 1092532557.1042602 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 35942975.25287968 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 200548.39631296403 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 123422295.45246102 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 739046.2004207687 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 72618252.52136652 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 30079961.23353583 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1447823150.4297867 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 47631164.8512491 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 265748.1754414318 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 163556818.65201804 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 979353.7559711201 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 96236059.91206637 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 39853551.70068401 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1803113743.7553155 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 59319354.44961854 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 330947.95456989954 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 203691341.85157502 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1219661.311521472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 119853867.3027664 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 49627142.16783223 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 2158404337.080845 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 71007544.04798798 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 396147.7336983674 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 243825865.0511322 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1459968.867071824 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 143471674.69346645 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 59400732.63498047 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2513694930.406381 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 82695733.64635742 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 461347.5128268352 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 283960388.2506893 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1700276.4226221761 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 167089482.08416668 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 69174323.1021287 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2868985523.7319083 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 94383923.2447269 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 526547.2919553029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 324094911.45024693 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1940583.9781725279 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 190707289.47486672 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 78947913.56927694 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 3224276117.0574393 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 106072112.84309636 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 591747.0710837702 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 364229434.64980394 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2180891.533722879 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 214325096.8655666 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 88721504.03642517 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 64 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 38712435.17365891 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 1273387.2839455663 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 7097.506023432783 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 4372223.175883736 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 26173.17150135672 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 2574270.2438132544 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 1061892.0834740712 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 390833594.86912924 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 12856902.990385223 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 71644.62981537843 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 44146569.174014755 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 264200.8583181401 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 25983632.949351143 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 10740472.133353341 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 746124356.940487 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 24544167.905328315 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 136778.10590188732 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 84276187.60490856 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 504390.81158670946 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 49606627.444183744 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 20496092.29276059 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 1101415119.011845 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 36231432.82027137 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 201911.58198839633 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 124405806.03580257 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 744580.7648552778 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 73229621.93901625 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 30251712.452167798 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1456705881.0832012 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 47918697.73521437 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 267045.05807490525 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 164535424.46669656 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 984770.7181238474 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 96852616.43384854 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 40007332.61157491 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1811996643.15456 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 59605962.65015744 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 332178.5341614141 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 204665042.89759067 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1224960.6713924166 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 120475610.92868106 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 49762952.77098212 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 2167287405.2259183 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 71293227.56510054 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 397312.0102479232 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 244794661.32848468 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1465150.6246609862 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 144098605.4235136 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 59518572.93038931 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2522578167.2972827 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 82980492.48004355 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 462445.48633443203 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 284924279.75937873 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1705340.5779295554 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 167721599.9183464 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 69274193.08979651 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2877868929.3686433 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 94667757.39498661 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 527578.9624209411 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 325053898.1902731 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1945530.5311981249 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 191344594.41317874 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 79029813.24920367 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 3233159691.4400015 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 106355022.30992965 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 592712.4385074496 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 365183516.62116724 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2185720.4844666948 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 214967588.90801114 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 88785433.40861087 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 65 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 45874674.46201501 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 1508978.3645235647 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 8410.625083557507 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 5181134.0198361045 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 31015.50488562939 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 3050539.4166611223 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 1258354.154799082 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 399808297.3660302 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 13151092.13868941 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 73300.52439337684 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 45154769.92890903 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 270307.23042054195 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 26586149.864302978 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 10966844.735438164 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 755145467.223705 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 24839373.477235977 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 138447.7488472511 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 85286923.9082531 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 510547.88295949274 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 50215092.316051595 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 20713834.97108976 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 1110482637.0813806 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 36527654.81578252 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 203594.97330112534 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 125419077.88759743 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 750788.5354984427 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 73844034.76780006 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 30460825.2067413 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1465819806.939054 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 48215936.154328994 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 268742.1977549996 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 165551231.86694172 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 991029.1880373935 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 97472977.21954848 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 40207815.4423928 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1821156976.7967293 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 59904217.492875524 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 333889.4222088738 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 205683385.846286 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1231269.8405763446 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 121101919.67129691 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 49954805.67804432 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 2176494146.654405 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 71592498.83142206 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 399036.6466627481 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 245815539.8256304 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1471510.4931152952 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 144730862.12304544 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 59701795.913695835 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2531831316.512085 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 83280780.1699686 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 464183.8711166223 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 285947693.80497473 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1711751.1456542455 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 168359804.57479408 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 69448786.14934738 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2887168486.369764 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 94969061.5085151 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 529331.0955704966 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 326079847.78431946 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1951991.798193197 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 191988747.0265426 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 79195776.38499889 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 3242505656.2274404 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 106657342.84706168 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 594478.3200243704 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 366212001.7636639 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2192232.450732148 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 215617689.47829115 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 88942766.62065046 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 66 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 46538676.42428313 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 1530819.709597161 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 8532.362657172516 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 5256127.100360169 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 31464.431365137098 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 3094693.717097991 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 1276567.8999169196 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 394429593.9949368 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 12974167.78747924 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 72314.39734134966 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 44547293.50874055 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 266670.73157578986 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 26228480.914354697 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 10819305.514423061 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 742636468.7049319 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 24427908.799872093 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 136154.35934757645 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 83874144.44900349 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 502090.6479115451 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 49383278.39056923 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 20370709.91476903 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 1090843343.4149277 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 35881649.81226493 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 199994.3213538032 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 123200995.38926676 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 737510.5642472993 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 72538075.86678368 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 29922114.315114956 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1439050218.1249208 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 47335390.82465768 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 263834.28336003 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 162527846.32952994 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 972930.4805830548 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 95692873.342998 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 39473518.71546084 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1787257092.8349173 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 58789131.8370505 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 327674.24536625686 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 201854697.2697931 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1208350.39691881 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 118847670.81921238 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 49024923.11580673 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 2135463967.544913 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 70242872.84944332 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 391514.20737248356 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 241181548.2100564 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1443770.3132545662 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 142002468.29542685 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 58576327.51615263 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2483670842.254912 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 81696613.86183615 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 455354.1693787103 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 280508399.1503197 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1679190.2295903207 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 165157265.77164152 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 68127731.91649854 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2831877716.9649124 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 93150354.87422897 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 519194.1313849372 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 319835250.0905833 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1914610.1459260767 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 188312063.24785593 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 77679136.31684446 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 3180084591.6749086 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 104604095.8866218 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 583034.0933911637 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 359162101.0308466 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2150030.062261832 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 211466860.72407037 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 87230540.71719038 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 67 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 47039613.74646994 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 1547297.2887849591 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 8624.204093797045 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 5312703.48879725 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 31803.11113008112 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 3128004.6683914494 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 1290308.7398914816 tonnes. circ_CL_20
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 387181495.99372965 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 12735752.513779052 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 70985.53701543024 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 43728685.69138686 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 261770.34979424486 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 25746502.37373719 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 10620488.316455543 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 727323378.2409877 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 23924207.738773197 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 133346.86993706357 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 82144667.89397615 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 491737.58845840837 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 48365000.07908307 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 19950667.89301967 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 1067465260.4882469 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 35112662.96376731 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 195708.20285869684 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 120560650.09656571 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 721704.827122571 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 70983497.78442886 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 29280847.46958378 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1407607142.7355037 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 46301118.18876136 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 258069.5357803301 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 158976632.29915524 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 951672.0657867343 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 93601995.4897745 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 38611027.04614783 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1747749024.9827623 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 57489573.41375546 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 320430.8687019633 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 197392614.50174472 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1181639.304450898 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 116220493.1951202 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 47941206.62271187 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 2087890907.230022 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 68678028.63874958 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 382792.20162359654 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 235808596.70433438 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1411606.543115062 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 138838990.90046602 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 57271386.19927598 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2428032789.477282 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 79866483.86374372 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 445153.53454522986 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 274224578.9069239 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1641573.7817792245 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 161457488.60581192 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 66601565.775840044 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2768174671.724548 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 91054939.08873779 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 507514.867466863 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 312640561.1095137 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1871541.0204433883 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 184075986.3111578 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 75931745.35240412 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 3108316553.9718065 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 102243394.31373188 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 569876.2003884964 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 351056543.3121035 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2101508.259107552 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 206694484.01650354 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 85261924.9289682 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 68 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 47040265.097317554 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 1547318.7139906578 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 8624.323511925706 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 5312777.053047569 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 31803.55150324197 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 3128047.981427632 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 1290326.60661326 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 378300911.77115834 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 12443639.063093206 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 69357.37800841987 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 42725703.16189378 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 255766.2569789278 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 25155967.99868971 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 10376891.600302963 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 709561558.444998 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 23339959.412195794 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 130090.432504914 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 80138629.27073972 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 479728.96245461324 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 47183888.01595195 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 19463456.593992736 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 1040822205.1188378 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 34236279.76129837 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 190823.48700140818 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 117551555.37958585 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 703691.6679302979 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 69211808.03321408 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 28550021.587682474 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1372082851.792677 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 45132600.11040087 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 251556.5414979023 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 154964481.48843193 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 927654.3734059834 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 91239728.05047607 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 37636586.581372194 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1703343498.466517 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 56028920.45950342 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 312289.5959943964 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 192377407.59727812 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1151617.0788816686 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 113267648.06773816 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 46723151.57506185 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 2034604145.1403568 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 66925240.808605984 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 373022.65049089055 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 229790333.70612428 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1375579.7843573543 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 135295568.08500028 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 55809716.56875158 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2365864791.8141985 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 77821561.15770856 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 433755.7049873848 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 267203259.81497046 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1599542.4898330397 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 157323488.10226244 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 64896281.562441304 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2697125438.4880433 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 88717881.50681111 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 494488.75948387885 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 304616185.92381674 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1823505.1953087256 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 179351408.11952475 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 73982846.55613102 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 3028386085.161887 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 99614201.85591367 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 555221.813980373 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 342029112.0326631 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 2047467.9007844112 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 201379328.13678688 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 83069411.54982078 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 69 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 46141838.845272005 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 1517766.3347671449 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 8459.60678183888 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 5211307.846489139 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 31196.13261392063 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 3068305.111816702 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 1265682.5427523137 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 367622172.3428012 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 12092378.003548931 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 67399.54670497848 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 41519635.09078323 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 248546.4456386461 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 24445861.25834802 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 10083971.022984928 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 689102505.8403286 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 22666989.672330763 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 126339.48662811801 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 77827962.33507705 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 465896.75866337144 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 45823417.40487951 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 18902259.503217578 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 1010582839.3378572 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 33241601.341112584 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 185279.42655125755 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 114136289.57937104 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 683247.0716880957 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 67200973.55141087 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 27720547.98345027 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1332063172.8353834 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 43816213.00989432 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 244219.36647439722 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 150444616.823665 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 900597.384712821 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 88578529.69794214 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 36538836.4636829 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1653543506.3329115 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 54390824.678676106 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 303159.3063975366 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 186752944.06795904 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1117947.697737546 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 109956085.84447345 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 45357124.94391549 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1975023839.8304403 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 64965436.34745793 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 362099.2463206763 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 223061271.3122531 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1335298.0107622717 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 131333641.99100482 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 54175413.42414814 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2296504173.327969 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 75540048.01623972 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 421039.1862438157 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 259369598.5565471 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1552648.3237869965 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 152711198.13753623 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 62993701.90438075 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2617984506.8255014 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 86114659.6850215 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 479979.1261669552 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 295677925.8008412 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1769998.6368117211 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 174088754.28406778 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 71811990.3846134 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2939464840.3230333 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 96689271.3538033 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 538919.0660900951 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 331986253.04513544 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1987348.9498364474 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 195466310.43059915 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 80630278.86484602 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 70 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 44449829.987583056 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 1462110.2502547833 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 8149.395269561798 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 5020210.585151725 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 30052.178796098226 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 2955791.186121293 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 1219270.3032977798 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 355356267.7031567 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 11688909.53342696 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 65150.72583715655 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 40134310.9101147 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 240253.56444136248 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 23630212.40583739 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 9747514.094479727 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 666262705.4187287 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 21915708.816599183 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 122152.05640475125 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 75248411.23507755 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 450454.9500866265 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 44304633.62555363 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 18275757.885661684 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 977169143.1343023 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 32142508.099771384 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 179153.3869723459 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 110362511.56004027 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 660656.3357318897 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 64979054.84526978 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 26804001.676843718 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1288075580.8498738 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 42369307.38294353 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 236154.7175399406 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 145476611.8850031 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 870857.7213771533 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 85653476.0649858 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 35332245.46802568 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1598982018.5654454 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 52596106.66611571 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 293156.0481075354 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 180590712.209966 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1081059.1070224172 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 106327897.28470185 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 43860489.25920759 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1909888456.281019 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 62822905.9492879 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 350157.3786751301 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 215704812.53492892 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1291260.4926676818 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 127002318.50441803 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 52388733.050389566 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2220794893.9965925 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 73049705.2324601 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 407158.7092427247 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 250818912.8598919 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1501461.8783129456 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 147676739.72413415 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 60916976.84157152 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2531701331.712169 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 83276504.51563227 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 464160.03981031943 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 285933013.18485475 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1711663.26395821 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 168351160.9438504 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 69445220.63275346 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2842607769.427746 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 93503303.7988045 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 521161.3703779141 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 321047113.5098179 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1921864.6496034728 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 189025582.16356662 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 77973464.42393544 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 71 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 42041395.55845957 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 1382888.4249548537 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 7707.834882284029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 4748199.465691717 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 28423.855310880925 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 2795636.934464026 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 1153206.3256022402 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 341657511.92064357 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 11238309.581729852 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 62639.20721933321 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 38587159.01320097 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 230991.94390928905 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 22719282.901403025 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 9371753.689492512 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 641273628.282826 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 21093730.738504898 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 117570.57955638235 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 72426118.56071015 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 433560.0325076968 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 42642928.86834217 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 17590301.053382788 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 940889744.6450096 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 30949151.89527992 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 172501.9518934316 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 106265078.1082191 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 636128.1211061041 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 62566574.83528121 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 25808848.417273153 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1240505861.0071921 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 40804573.05205489 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 227433.3242304807 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 140104037.65572828 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 838696.2097045123 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 82490220.80222012 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 34027395.78116343 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1540121977.369374 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 50659994.2088299 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 282364.69656752987 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 173942997.20323744 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 1041264.2983029191 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 102413866.76915914 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 42245943.14505365 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1839738093.7315576 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 60515415.36560493 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 337296.06890457904 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 207781956.7507467 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1243832.3869013279 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 122337512.73609819 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 50464490.508943945 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2139354210.0937405 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 70370836.52237992 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 392227.44124162826 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 241620916.29825583 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1446400.4754997357 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 142261158.7030372 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 58683037.87283424 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2438970326.455925 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 80226257.67915493 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 447158.8135786774 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 275459875.84576505 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1648968.564098143 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 162184804.66997638 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 66901585.236724496 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2738586442.8181143 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 90081678.83592993 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 502090.1859157266 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 309298835.3932743 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1851536.652696552 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 182108450.63691542 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 75120132.6006148 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 72 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 38770032.07694988 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 1275281.847382776 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 7108.065792308211 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 4378728.230765928 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 26212.11231252032 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 2578100.279139436 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 1063471.9813896338 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 326232898.0333577 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 10730940.12548845 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 59811.27119611384 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 36845086.885355644 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 220563.484350929 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 21693588.589634016 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 8948652.55147116 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 613695763.9897646 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 20186598.403594177 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 112514.47659991938 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 69311445.5399454 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 414914.85638933734 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 40809076.90012875 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16833833.12155269 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 901158629.9461714 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 29642256.681699872 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 165217.68200372497 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 101777804.19453484 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 609266.2284277458 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 59924565.210623376 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 24719013.69163429 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1188621495.9025784 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 39097914.959805556 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 217920.88740753054 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 134244162.8491245 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 803617.6004661535 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 79040053.52111794 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 32604194.261715837 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1476084361.858984 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 48553573.2379112 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 270624.0928113361 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 166710521.50371417 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 997968.9725045615 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 98155541.83161248 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 40489374.83179734 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1763547227.8153918 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 58009231.5160169 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 323327.29821514175 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 199176880.15830392 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1192320.3445429702 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 117271030.14210707 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 48374555.401878856 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 2051010093.7717986 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 67464889.79412258 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 376030.50361894746 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 231643238.8128936 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1386671.7165813788 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 136386518.45260164 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 56259735.971960396 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2338472959.728207 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 76920548.07222828 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 428733.7090227529 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 264109597.4674833 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1581023.088619787 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 155502006.76309636 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 64144916.54204192 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2625935825.684617 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 86376206.35033397 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 481436.91442655836 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 296575956.12207294 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1775374.460658196 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 174617495.07359102 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 72030097.11212347 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 73 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 34834921.84752481 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 1145842.3196290776 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 6386.605919506913 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 3934292.7394936965 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 23551.615383059077 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 2316426.2944290433 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 955530.8926547238 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 309480790.6502413 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 10179904.768883811 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 56739.95360724349 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 34953086.24481745 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 209237.51693036768 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 20579619.61909341 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 8489137.924405212 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 584126659.452957 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 19213967.21813857 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 107093.30129497997 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 65971879.750141256 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 394923.4184776761 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 38842812.94375785 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 16022744.95615568 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 858772528.2556725 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 28248029.66739335 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 157446.64898271646 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 96990673.25546476 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 580609.3200249843 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 57106006.26842231 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 23556351.987906236 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1133418397.0583878 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 37282092.11664808 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 207799.99667045302 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 128009466.7607885 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 766295.221572292 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 75369199.59308669 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 31089959.019656725 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1408064265.8611019 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 46316154.56590279 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 258153.34435818953 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 159028260.26611224 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 951981.1231196001 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 93632392.91775095 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 38623566.0514072 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1682710134.663818 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 55350217.015157536 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 308506.69204592606 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 190047053.77143604 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1137667.0246669084 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 111895586.24241534 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 46157173.08315766 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 1957356003.4665341 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 64384279.46441228 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 358860.0397336625 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 221065847.2767597 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1323352.9262142165 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 130158779.56707972 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 53690780.11490815 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2232001872.269249 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 73418341.913667 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 409213.3874213992 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 252084640.7820835 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1509038.8277615253 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 148421972.89174417 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 61224387.146658644 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2506647741.0719676 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 82452404.3629218 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 459566.7351091357 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 283103434.28740734 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1694724.7293088338 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 166685166.2164086 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 68757994.17840911 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 74 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 30145795.009451423 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 991600.5505017922 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 5526.905261861082 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 3404697.81878892 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 20381.333783000602 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 2004612.2833866195 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 826906.9338306626 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 291220650.0498279 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 9579264.929531995 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 53392.154448684036 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 32890766.745414183 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 196891.98016861198 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 19365370.595888734 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7988257.557160949 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 552295505.0902045 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 18166929.30856221 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 101257.40363550697 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 62376835.67203952 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 373402.6265542228 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 36726128.90839088 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 15149608.18049121 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 813370360.1305796 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 26754593.687592465 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 149122.6528223299 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 91862904.59866455 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 549913.2729398342 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 54086887.22089312 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 22310958.803821567 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1074445215.170956 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 35342258.066622674 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 196987.90200915287 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 121348973.5252898 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 726423.9193254443 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 71447645.53339526 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 29472309.42715186 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1335520070.211331 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 43929922.44565281 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 244853.1511959758 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 150835042.45191506 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 902934.5657110548 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 88808403.84589729 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 36633660.05048213 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1596594925.2517066 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 52517586.82468306 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 292718.40038279875 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 180321111.37854034 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1079445.2120966665 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 106169162.15839942 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 43795010.67381238 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 1857669780.292082 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 61105251.203713275 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 340583.64956962166 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 209807180.30516556 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1255955.8584822768 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 123529920.47090152 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 50956361.29714267 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 2118744635.3324585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 69692915.58274348 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 388448.8987564446 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 239293249.23179084 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1432466.5048678883 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 140890678.78340366 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 58117711.920472935 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2379819490.372835 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 78280579.9617737 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 436314.1479432675 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 268779318.15841615 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1608977.1512534993 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 158251437.09590587 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 65279062.543803245 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 75 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 24630180.57733698 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 810172.7160218726 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 4515.677048516808 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 2781758.5192808756 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 16652.270451812416 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 1637839.1252206226 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 675612.2070927547 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 271307534.2613323 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8924252.959474916 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 49741.300178727724 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 30641758.488404386 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 183428.8799445966 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 18041203.27843691 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 7442035.6540889945 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 517984887.94532824 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 17038333.20292795 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 94966.9233089386 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 58501758.45752798 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 350205.4894373805 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 34444567.43165322 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 14208459.101085212 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 764662241.6293226 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 25152413.446381036 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 140192.54643914953 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 86361758.42665128 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 516982.09893016465 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 50847931.58486964 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 20974882.5480815 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 1011339595.3133181 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 33266493.689834088 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 185418.16956936038 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 114221758.39577478 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 683758.7084229478 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 67251295.73808599 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 27741305.995077763 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1258016948.9973133 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 41380573.93328711 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 230643.79269957123 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 142081758.3648983 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 850535.3179157315 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 83654659.89130223 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 34507729.442074 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1504694302.6813073 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 49494654.17674013 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 275869.41582978214 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 169941758.33402178 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 1017311.9274085157 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 100058024.04451853 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 41274152.889070235 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 1751371656.3653018 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 57608734.42019317 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 321095.0389599931 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 197801758.30314535 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1184088.5369012996 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 116461388.19773479 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 48040576.336066425 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 1998049010.0492976 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 65722814.663646236 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 366320.66209020384 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 225661758.2722688 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1350865.1463940837 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 132864752.35095114 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 54806999.783062674 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2245536746.9510183 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 73863551.24323379 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 411694.8602130056 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 253613283.77498367 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1518189.6495764325 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 149322004.75465128 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 61595652.25077597 tonnes. circ_OL_0
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 76 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 18466810.405629545 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 607437.931508966 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 3385.6898306601447 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 2085661.00473791 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 12485.264583883778 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 1227991.9956494912 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 506549.3733160356 tonnes. circ_CL_20
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 250098906.99365112 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 8226627.0893518645 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 45852.92789974665 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 28246433.80132475 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 169089.89464710045 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 16630888.018174835 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 6860277.536939419 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 481731003.5816734 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 15845816.247194743 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 88320.1659688331 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 54407206.59791167 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 325694.5247103171 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 32033784.04070017 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 13214005.700562779 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 713363100.1696944 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 23465005.40503767 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 130787.40403791956 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 80567979.39449845 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 482299.15477353346 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 47436680.06322565 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 19567733.86418618 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 944995196.7577156 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 31084194.562880557 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 173254.64210700605 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 106728752.19108513 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 638903.7848367495 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 62839576.08575103 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 25921462.027809605 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1176627293.345737 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 38703383.72072345 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 215721.88017609247 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 132889524.98767197 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 795508.4148999657 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 78242472.10827634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 32275190.191432998 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1408259389.9337573 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 46322572.87856631 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 258189.11824517895 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 159050297.7842588 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 952113.0449631824 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 93645368.13080162 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 38628918.35505638 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 1639891486.521779 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 53941762.03640919 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 300656.3563142654 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 185211070.58084562 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1108717.6750263984 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 109048264.15332694 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 44982646.51867974 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 1871523583.1098006 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 61560951.194252074 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 343123.5943833519 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 211371843.37743247 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1265322.3050896153 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 124451160.1758523 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 51336374.682303086 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 2105520501.6696033 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 69257927.61125739 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 386024.3969676588 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 237799701.65664226 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1423525.772600281 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 140011310.34182188 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 57754970.5226664 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 77 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 11572866.979683412 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 380672.03947814874 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 2121.7599132740443 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 1307051.7778850775 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 7824.323912016305 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 769563.7582024034 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 317446.72670930607 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 227429133.21749252 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 7480939.004192982 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 41696.67022170666 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 25686085.68962537 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 153763.03974172674 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 15123410.542160824 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 6238439.794129822 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 443285399.4553023 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 14581205.9689078 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 81271.58053013925 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 50065119.60136575 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 299701.75557143695 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 29477257.326119266 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 12159432.86155032 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 659141665.6931108 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 21681472.933622662 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 120846.49083857187 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 74444153.51310603 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 445640.4714011472 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 43831104.11007782 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 18080425.928970844 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 874997931.9309199 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 28781739.898337483 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 160421.4011470044 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 98823187.42484616 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 591579.1872308572 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 58184950.894036256 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 24001418.996391416 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1090854198.1687288 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 35882006.86305233 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 199996.31145543707 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 123202221.33658643 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 737517.9030605665 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 72538797.67799468 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 29922412.06381193 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1306710464.4065378 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 42982273.827767126 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 239571.2217638697 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 147581255.24832672 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 883456.6188902769 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 86892644.46195307 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 35843405.13123244 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 1522566730.6443448 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 50082540.79248193 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 279146.1320723022 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 171960289.16006705 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 1029395.334719987 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 101246491.24591148 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 41764398.19865295 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 1738422996.8821542 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 57182807.75719677 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 318721.04238073475 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 196339323.07180735 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1175334.0505496974 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 115600338.02986993 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 47685391.26607342 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 1959083922.049504 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 64441116.74528538 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 359176.8349054366 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 221261000.2202678 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1324521.158313531 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 130273681.39053562 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 53738177.36739079 tonnes. circ_OL_0
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 78 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_10 = 3888633.766791641 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_10 = 127910.75447310357 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_10 = 712.9389163693717 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_10 = 439186.3906629003 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_10 = 2629.0745603484356 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_10 = 258583.4280389182 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_10 = 106666.2273753233 tonnes. circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 203178779.86744273 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 6683260.133085645 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 37250.63038462957 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 22947225.25718732 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 137367.56747675204 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 13510828.880714025 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 5573246.345865718 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 402468925.96809435 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 13238609.511698164 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 73788.32185288971 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 45455264.12371182 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 272106.06039315544 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 26763074.33338915 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 11039826.464356087 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 601759072.0687453 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 19793958.89031071 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 110326.01332114992 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 67963302.99023625 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 406844.55330955895 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 40015319.786064304 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 16506406.582846487 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 801049218.1693953 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 26349308.268923268 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 146863.70478941005 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 90471341.85676047 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 541583.0462259625 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 53267565.238739505 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 21972986.70133691 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 1000339364.2700467 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 32904657.647535812 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 183401.3962576702 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 112979380.72328489 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 676321.5391423655 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 66519810.691414654 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 27439566.81982733 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1199629510.3706977 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 39460007.02614835 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 219939.08772593038 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 135487419.58980933 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 811060.0320587681 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 79772056.14408976 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 32906146.93831774 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 1398919656.4713476 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 46015356.40476086 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 256476.77919419057 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 157995458.45633376 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 945798.5249751717 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 93024301.59676482 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 38372727.056808114 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 1598209802.571998 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 52570705.783373356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 293014.47066245065 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 180503497.32285812 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 1080537.0178915751 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 106276547.04943988 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 43839307.175298475 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 1805724760.735071 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 59396597.97455112 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 331060.09240925784 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 203940455.12086532 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1220836.241247966 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 120075719.8358844 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 49531496.010418765 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 79 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 177490011.31248292 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 5838266.7589575155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 32540.872686992912 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 20045908.69748063 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 119999.59405861095 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 11802596.572552873 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 4868596.797462457 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 359494829.6735215 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 11825041.29995735 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 65909.48638480096 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 40601724.45515486 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 243051.6134851243 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 23905415.370587505 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 9861035.916953139 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 541499648.0345596 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 17811815.840957206 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 99278.10008260897 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 61157540.21282917 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 366103.63291163795 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 36008234.16862215 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 14853475.03644382 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 723504466.3955969 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 23798590.381957088 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 132646.7137804169 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 81713355.97050336 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 489155.6523381513 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 48111052.96665689 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 19845914.155934516 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 905509284.7566347 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 29785364.922956932 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 166015.3274782249 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 102269171.72817741 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 612207.6717646645 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 60213871.764691524 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 24838353.27542526 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 1087514103.117673 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 35772139.463956796 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 199383.94117603288 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 122824987.48585166 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 735259.6911911777 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 72316690.56272617 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 29830792.39491595 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 1269518921.4787107 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 41758914.004956625 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 232752.55487384094 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 143380803.24352583 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 858311.7106176909 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 84419509.36076076 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 34823231.51440665 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 1451523739.8397481 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 47745688.54595646 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 266121.1685716489 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 163936619.00120005 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 981363.7300442039 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 96522328.15879536 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 39815670.63389732 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 1646019453.358442 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 54143332.28150599 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 301779.85271379474 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 185903169.6054645 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1112860.744979274 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 109455757.05869274 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 45150738.229843184 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 80 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 150723862.96126193 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 4957834.598135023 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 27633.5890636638 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 17022911.729571473 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 101903.2126740593 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 10022721.477303814 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 4134394.443315705 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 314904663.6845564 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 10358314.908174993 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 57734.3620281734 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 35565664.17429427 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 212904.5546274775 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 20940292.227154 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 8637916.160934938 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 479085464.4078513 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 15758795.21821496 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 87835.13499268293 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 54108416.619017154 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 323905.8965808958 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 31857862.977004185 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 13141437.87855417 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 643266265.1311452 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 21159275.528254945 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 117935.90795719245 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 72651169.06373994 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 434907.2385343141 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 42775433.726854414 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 17644959.596173413 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 807447065.8544393 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 26559755.83829495 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 148036.680921702 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 91193921.50846261 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 545908.5804877321 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 53693004.47670468 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 22148481.313792676 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 971627866.5777338 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 31960236.148334928 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 178137.45388621153 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 109736673.95318533 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 656909.9224411502 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 64610575.226554886 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 26652003.03141197 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 1135808667.3010278 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 37360716.4583749 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 208238.22685072108 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 128279426.39790812 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 767911.2643945682 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 75528145.97640507 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 31155524.74903121 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 1299989468.024322 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 42761196.76841488 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 238338.99981523067 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 146822178.8426309 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 878912.6063479859 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 86445716.72625524 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 35659046.46665045 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 1481457612.8480675 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 48730318.24122223 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 271609.2202281302 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 167317382.12611946 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 1001601.7850369237 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 98512848.21318437 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 40636764.49256736 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 81 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 122464099.1197551 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 4028272.2039933754 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 22452.467204857057 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 13831224.25606141 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 82797.00965961102 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 8143525.068500262 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 3359221.8309618896 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 268074074.46016288 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 8817893.16641391 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 49148.48031832939 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 30276568.13503233 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 181242.76332498563 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 17826187.113388736 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 7353341.017606147 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 413684049.8005713 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 13607514.128834434 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 75844.4934318017 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 46721912.014003284 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 279688.51699036034 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 27508849.158277217 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 11347460.204250408 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 559294025.1409792 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 18397135.091254964 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 102540.50654527397 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 63167255.89297423 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 378134.270655735 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 37191511.203165725 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 15341579.390894668 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 704904000.4813867 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 23186756.053675517 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 129236.51965874624 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 79612599.77194509 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 476580.02432110946 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 46874173.24805425 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 19335698.57753894 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 850513975.821794 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 27976377.016096074 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 155932.5327722186 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 96057943.65091597 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 575025.7779864841 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 56556835.292942815 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 23329817.764183227 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 996123951.1622019 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 32765997.97851661 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 182628.54588569092 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 112503287.52988678 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 673471.5316518586 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 66239497.337831296 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 27323936.95082752 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 1141733926.5026093 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 37555618.94093713 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 209324.5589991632 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 128948631.40885769 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 771917.2853172331 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 75922159.38271977 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 31318056.137471788 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 1310308917.5888746 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 43100639.52870291 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 240230.959210561 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 147987668.3383473 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 885889.5046505865 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 87131931.68089166 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 35942111.63031817 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 82 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 93346901.55402644 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 3070505.8181278263 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 17114.14415229801 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 10542697.315232657 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 63111.102479965164 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 6207311.680206646 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 2560529.5903601865 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 219957334.6494367 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 7235165.43706696 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 40326.79681785688 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 24842212.894792337 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 148711.41577469758 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 14626556.530388396 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 6033486.431905531 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 346567767.7448471 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 11399825.056006094 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 63539.4494834158 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 39141728.47435204 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 234311.72906943 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 23045801.38057017 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 9506443.273450876 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 473178200.8402579 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 15564484.674945218 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 86752.10214897466 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 53441244.053911746 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 319912.0423641623 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 31465046.230751943 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 12979400.114996215 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 599788633.9356681 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 19729144.29388436 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 109964.75481453356 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 67740759.63347146 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 405512.35565889464 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 39884291.08093372 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 16452356.956541555 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 726399067.0310783 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 23893803.912823506 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 133177.40748009243 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 82040275.21303113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 491112.6689536269 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 48303535.93111552 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 19925313.79808691 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 853009500.1264882 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 28058463.53176265 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 156390.0601456513 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 96339790.79259074 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 576712.9822483594 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 56722780.78129732 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 23398270.639632273 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 979619933.2218987 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 32223123.150701787 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 179602.71281121016 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 110639306.37215039 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 662313.2955430916 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 65142025.631479144 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 26871227.481177628 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 1135215822.7825544 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 37341215.730306655 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 208129.5352243238 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 128212469.91398415 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 767510.4469004982 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 75488723.44986369 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 31139262.870953165 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 83 PV_ICE
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 63062422.89548249 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 2074343.4777398221 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 11561.812744280764 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 7122336.419141613 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 42636.00577774097 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 4193477.3163809823 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 1729818.5282586387 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 170089673.19948748 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 5594843.775936334 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 31184.100784197097 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 19210106.721658908 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 114996.28394054195 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 11310494.484090006 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 4665603.61395515 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 277116923.50349253 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 9115344.074132845 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 50806.38882411349 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 31297877.024176214 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 187356.56210334273 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 18427511.65179902 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 7601388.699651651 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 384144173.8074979 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 12635844.372329354 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 70428.6768640299 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 43385647.326693535 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 259716.84026614355 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 25544528.819508046 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 10537173.78534815 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 491171424.1115031 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 16156344.670525858 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 90050.96490394627 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 55473417.62921086 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 332077.1184289444 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 32661545.98721706 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 13472958.87104465 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 598198674.4155084 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 19676844.96872237 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 109673.25294386264 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 67561187.93172818 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 404437.39659174526 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 39778563.154926114 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 16408743.95674116 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 705225924.7195134 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 23197345.26691889 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 129295.540983779 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 79648958.23424548 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 476797.6747545461 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 46895580.32263516 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 19344529.042437673 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 812253175.0235183 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 26717845.565115407 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 148917.82902369538 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 91736728.5367627 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 549157.9529173468 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 54012597.49034421 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 22280314.12813417 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 954885228.7516917 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 31409512.278556384 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 175067.87243814635 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 107845742.81439057 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 645590.3573132949 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 63497235.95546063 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 26192748.15673938 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 84 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 32041077.802419342 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 1053943.0251412685 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 5874.384850237669 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 3618753.0523358495 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 21662.719502121417 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 2130643.3655353384 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 878895.0297685445 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 119116712.09775972 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 3918164.9464898775 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 21838.7600214986 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 13453166.842453415 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 80533.86774629312 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 7920933.057261632 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 3267402.141421932 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 206192346.3931 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 6782386.86783849 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 37803.13519275953 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 23287580.632570982 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 139405.0159904648 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 13711222.748987919 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 5655909.253075324 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 293267980.6884404 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 9646608.7891871 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 53767.510364020476 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 33121994.42268855 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 198276.1642346365 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 19501512.440714207 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 8044416.36472871 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 380343614.9837808 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 12510830.710535707 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 69731.88553528143 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 42956408.21280612 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 257147.3124788081 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 25291802.13244049 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 10432923.476382094 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 467419249.27912134 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 15375052.631884316 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 85696.2607065424 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 52790822.00292372 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 316018.46072297986 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 31082091.824166782 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 12821430.588035481 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 554494883.5744616 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 18239274.553232927 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 101660.63587780332 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 62625235.7930413 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 374889.6089671514 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 36872381.51589307 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 15209937.699688865 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 641570517.8698021 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 21103496.474581536 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 117625.01104906425 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 72459649.58315885 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 433760.75721132307 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 42662671.20761938 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 17598444.811342254 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 771108458.209719 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 25364452.037759025 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 141374.3904849315 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 87089800.91230604 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 521340.33501985366 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 51276587.22106629 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 21151703.931814503 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 85 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 22070181.159566853 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 725965.3885604733 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 4046.3288608840408 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 2492629.4904710446 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 14921.475075492066 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 1467606.2195461972 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 605390.7626593647 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 67378489.26389919 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 2216313.984259305 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 12353.116802265142 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 7609797.497732819 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 45554.06414232231 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 4480483.834382167 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 1848209.3421614796 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 133699806.11217797 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 4397853.87319368 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 24512.4124833837 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 15100196.830102332 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 90393.38236859949 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 8890668.616795532 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 3667420.172243351 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 200431833.60622117 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 6592903.470606775 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 36747.00751648373 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 22636982.255104307 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 135510.37881689507 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 13328164.52519377 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 5497896.90128971 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 267163861.10026443 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 8787953.068019869 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 48981.60254958377 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 30173767.680106293 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 180627.3752651907 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 17765660.433592 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 7328373.630336072 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 333895888.59430784 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 10983002.66543297 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 61216.197582683824 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 37710553.10510828 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 225744.37171348638 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 22203156.341990244 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 9158850.359382432 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 400627916.0883511 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 13178052.262846062 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 73450.79261578384 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 45247338.53011026 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 270861.368161782 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 26640652.250388473 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 10989327.088428793 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 467359943.5823943 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 15373101.860259159 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 85685.38764888392 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 52784123.95511224 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 315978.3646100776 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 31078148.158786714 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 12819803.817475148 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 583674688.7977773 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 19199100.323755916 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 107010.43736680906 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 65920833.70861661 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 394617.84468934353 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 38812758.14086345 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 16010347.284489097 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 86 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 22070191.632530797 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 725965.7330528584 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 4046.330780988638 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 2492630.6732986174 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 14921.482156180233 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 1467606.9159694356 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 605391.049935468 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 67378505.20339282 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 2216314.508564956 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 12353.119724598799 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 7609799.29795601 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 45554.074918888 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 4480484.894314564 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 1848209.7793859025 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 130360149.89049178 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 4288000.908729732 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 23900.122658595286 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 14723012.541218434 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 88135.46718827929 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 8668590.68247064 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 3575812.540550201 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 194036791.5980469 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 6382548.189752528 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 35574.545774681275 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 21914719.479501013 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 131186.74145108517 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 12902911.857007695 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 5322479.249274238 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 257713433.305602 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 8477095.470775323 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 47248.968890767275 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 29106426.417783592 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 174238.01571389099 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 17137233.03154475 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 7069145.957998279 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 321390075.0131572 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 10571642.751798123 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 58923.39200685326 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 36298133.356066175 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 217289.28997669686 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 21371554.20608181 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 8815812.666722316 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 385066716.72071236 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 12666190.032820918 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 70597.81512293925 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 43489840.29434876 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 260340.56423950274 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 25605875.380618867 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 10562479.375446351 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 448743358.4282676 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 14760737.313843716 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 82272.23823902526 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 50681547.23263133 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 303391.8385023086 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 29840196.555155914 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 12309146.084170388 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 541258251.8884532 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 17803875.47808761 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 99233.84271173221 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 61130276.678002685 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 365940.42688485445 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 35992181.99021735 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 14846853.477883097 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 87 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 22070195.563942783 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 725965.8623707378 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 4046.3315017704763 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 2492631.117316424 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 14921.484814176807 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 1467607.1773974965 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 605391.1577751123 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 67378511.15848921 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 2216314.7044488876 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 12353.12081640127 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 7609799.970530862 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 45554.07894508161 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 4480485.290312059 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 1848209.9427357328 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 128049666.68925092 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 4212001.041631941 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 23476.52056887179 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 14462064.136535564 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 86573.3677541877 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 8514949.91750446 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 3512435.3903039964 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 188928215.86542928 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 6214509.280605977 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 34637.94370170997 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 21337751.559148997 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 127732.87376806095 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 12563205.650520008 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 5182349.699067446 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 249806765.04160756 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 8217017.519580014 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 45799.36683454815 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 28213438.981762435 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 168892.37978193417 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 16611461.383535562 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 6852264.007830897 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 310685314.217786 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 10219525.758554053 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 56960.78996738634 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 35089126.40437587 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 210051.88579580744 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 20659717.116551116 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 8522178.316594351 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 371563863.3939643 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 12222033.99752809 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 68122.21310022452 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 41964813.82698932 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 251211.3918096807 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 24707972.849566672 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 10192092.625357803 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 432442412.5701427 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 14224542.236502128 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 79283.63623306269 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 48840501.249602735 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 292370.89782355394 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 28756228.582582228 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 11862006.934121255 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 500953793.6608844 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 16478120.992143434 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 91844.45649104803 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 56578248.74270194 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 338690.9011774867 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 33312046.601089396 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 13741291.791345526 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 88 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 22070197.033398546 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 725965.9107062734 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 4046.331771179288 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 2492631.2832783046 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 14921.485807664241 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 1467607.2751122555 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 605391.1980826634 tonnes. circ_CL_30
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 67378513.37609449 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 2216314.777393676 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 12353.121222975196 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 7609800.220989537 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 45554.080444387 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 4480485.437776698 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 1848210.0035652171 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 125365565.53185803 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 4123711.5742472243 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 22984.41967037131 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 14158918.926627541 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 84758.66817240487 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 8336464.588181576 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 3438809.803138182 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 183352617.68762153 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 6031108.37110077 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 33615.71811776743 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 20708037.632265538 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 123963.25590042264 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 12192443.73858645 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 5029409.602711146 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 241339669.84338504 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 7938505.167954317 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 44247.01656516355 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 27257156.337903544 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 163167.84362844046 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 16048422.888991324 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 6620009.402284108 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 299326721.99914867 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 9845901.964807866 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 54878.31501255968 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 33806275.04354155 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 202372.4313564583 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 19904402.039396204 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 8210609.201857074 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 357313774.1549122 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 11753298.76166141 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 65509.61345995579 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 40355393.74917956 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 241577.01908447614 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 23760381.18980108 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 9801209.001430035 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 415300826.31067574 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 13660695.558514955 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 76140.9119073519 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 46904512.454817556 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 280781.60681249393 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 27616360.34020595 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 11391808.801003002 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 473287878.4664393 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 15568092.3553685 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 86772.21035474804 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 53453631.16045556 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 319986.1945405117 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 31472339.490610827 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 12982408.600575961 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 89 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 22070197.537012048 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 725965.9272718816 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 4046.3318635113724 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 2492631.3401569435 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 14921.486148153346 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 1467607.308601165 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 605391.2118969114 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 67268797.984078 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 2212705.8547201166 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 12333.00609324473 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 7597408.849132565 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 45479.90273485505 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 4473189.666593889 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 1845200.482058886 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 122258649.36774725 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 4021514.243650061 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 22414.8002163081 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 13808020.544820342 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 82658.10670581595 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 8129863.22623122 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 3353586.2912643603 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 177248500.75141647 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 5830322.632580006 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 32496.594339371477 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 20018632.240508113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 119836.31067677679 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 11786536.78586855 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 4861972.100469833 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 232238352.13508573 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 7639131.021509951 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 42578.38846243485 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 26229243.936195895 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 157014.51464773767 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 15443210.345505878 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 6370357.909675308 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 287228203.518755 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 9447939.410439897 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 52660.18258549824 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 32439855.631883673 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 194192.71861869853 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 19099883.905143213 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 7878743.718880782 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 342218054.9024243 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 11256747.79936984 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 62741.9767085616 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 38650467.32757145 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 231370.92258965946 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 22756557.46478054 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 9387129.528086254 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 397207906.28609353 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 13065556.188299783 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 72823.770831625 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 44861079.02325923 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 268549.12656062027 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 26413231.02441787 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 10895515.337291729 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 452197757.66976273 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 14874364.57722973 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 82905.56495468837 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 51071690.718947 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 305727.33053158113 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 30069904.5840552 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 12403901.146497197 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 90 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 22070197.69259217 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 725965.9323894556 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 4046.331892035303 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 2492631.357728326 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 14921.48625333984 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 1467607.3189468144 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 605391.2161645144 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 66809203.96324839 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 2197588.2011993155 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 12248.744503485808 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 7545501.816667295 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 45169.17484924902 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 4442627.930894525 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 1832593.699505898 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 118685228.36521901 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 3903971.938589912 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 21759.652148873614 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 13404434.615535412 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 80242.14500446164 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 7892240.578258792 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 3255566.43132833 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 170561252.7671896 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 5610355.675980506 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 31270.559794261426 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 19263367.414403528 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 115315.1151596742 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 11341853.225623056 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 4678539.16315076 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 222437277.16916016 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 7316739.413371102 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 40781.46743964925 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 25122300.213271644 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 150388.08531488676 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 14791465.872987324 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 6101511.894973191 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 274313301.5711308 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 9023123.1507617 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 50292.37508503706 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 30981233.01213976 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 185461.05547009935 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 18241078.52035159 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 7524484.626795623 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 326189325.97310144 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 10729506.888152294 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 59803.28273042487 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 36840165.81100789 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 220534.02562531192 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 21690691.167715855 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 8947457.358618055 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 378065350.37507206 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 12435890.625542888 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 69314.19037581269 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 42699098.60987601 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 255606.9957805245 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 25140303.815080117 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 10370430.090440482 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 429941374.7770426 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 14142274.362933483 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 78825.0980212005 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 48558031.408744134 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 290679.96593573707 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 28589916.462444384 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 11793402.822262915 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 91 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 22070197.73495493 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 725965.933782915 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 4046.331899802059 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 2492631.3625128213 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 14921.486281980968 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 1467607.3217638212 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 605391.2173265358 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 65973310.50268441 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 2170092.7440253966 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 12095.492483955453 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 7451095.129398641 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 44604.03388609178 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 4387043.319570663 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 1809664.926246895 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 114610074.77637821 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 3769925.8953256044 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 21012.516841743894 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 12944182.479845975 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 77486.96586637234 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 7621254.096120368 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 3143783.917117614 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 163246839.05007204 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 5369759.046625812 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 29929.54119953233 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 18437269.830293305 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 110369.89784665286 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 10855464.872670071 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 4477902.90798833 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 211883603.32376584 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 6969592.1979260165 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 38846.56555732077 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 23930357.180740636 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 143252.82982693342 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 14089675.649219772 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 5812021.898859047 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 260520367.59745964 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 8569425.349226227 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 47763.589915109216 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 29423444.53118797 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 176135.76180721392 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 17323886.425769478 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 7146140.889729764 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 309157131.8711535 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 10169258.500526432 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 56680.61427289766 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 34916531.8816353 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 209018.69378749447 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 20558097.20231918 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 8480259.880600484 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 357793896.14484733 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 11769091.651826637 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 65597.63863068611 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 40409619.232082635 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 241901.62576777497 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 23792307.978868883 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 9814378.871471196 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 406430660.41854113 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 13368924.803126842 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 74514.66298847455 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 45902706.58252997 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 274784.55774805555 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 27026518.755418587 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 11148497.862341914 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 92 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 22070197.745164108 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 725965.9341187302 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 4046.3319016737996 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 2492631.3636658555 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 14921.486288883305 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 1467607.3224427032 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 605391.2176065759 tonnes. circ_CL_30
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 64175135.49659637 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 2110944.4838658483 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 11765.816557353446 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 7248007.351514225 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 43388.30197429981 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 4267469.6376109505 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 1760340.5219540575 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 109251879.12683873 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 3593676.114747124 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 20030.149658518632 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 12339022.223335514 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 73864.33213010342 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 7264948.85313414 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 2996807.228195118 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 154328622.7570811 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 5076407.7456284 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 28294.48275968381 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 17430037.0951568 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 104340.36228590703 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 10262428.06865733 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 4233273.934436175 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 199405366.38732347 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 6559139.376509673 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 36558.81586084899 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 22521051.9669781 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 134816.39244171057 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 13259907.28418052 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 5469740.640677233 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 244482110.01756585 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 8041871.007390948 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 44823.14896201419 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 27612066.838799387 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 165292.4225975142 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 16257386.49970371 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 6706207.346918292 tonnes. circ_CL_80
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 289558853.6478082 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 9524602.638272224 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 53087.482063179385 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 32703081.710620675 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 195768.4527533178 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 19254865.7152269 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 7942674.05315935 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 334635597.2780505 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 11007334.269153498 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 61351.81516434456 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 37794096.58244197 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 226244.48290912135 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 22252344.93075009 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 9179140.759400407 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 379712340.90829295 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 12490065.900034772 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 69616.14826550975 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 42885111.45426326 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 256720.51306492495 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 25249824.146273278 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 10415607.465641463 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 93 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 22070197.74714033 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 725965.934183735 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 4046.3319020361205 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 2492631.363889053 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 14921.486290219418 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 1467607.3225741168 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 605391.2176607844 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 61714735.600301534 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 2030013.3327432591 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 11314.72886406651 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 6970127.197494829 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 41724.84504737774 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 4103859.825608665 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 1692851.1180884584 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 103010716.9570235 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 3388382.479551256 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 18885.90011971346 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 11634138.798645087 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 69644.73170699437 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 6849928.770091153 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 2825610.539842272 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 144306698.31374547 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 4746751.626359251 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 26457.07137536041 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 16298150.39979534 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 97564.61836661097 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 9595997.714573637 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 3958369.9615960834 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 185602679.67046744 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 6105120.773167247 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 34028.24263100736 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 20962162.000945598 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 125484.50502622758 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 12342066.659056121 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 5091129.383349895 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 226898661.0271894 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 7463489.919975244 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 41599.413886654314 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 25626173.602095857 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 153404.39168584417 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 15088135.60353861 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 6223888.805103706 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 268194642.3839114 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 8821859.06678324 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 49170.58514230127 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 30290185.203246113 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 181324.27834546083 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 17834204.548021093 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 7356648.226857519 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 309490623.74063337 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 10180228.213591238 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 56741.75639794822 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 34954196.80439637 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 209244.16500507738 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 20580273.49250358 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 8489407.64861133 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 350786605.0973553 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 11538597.360399228 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 64312.92765359517 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 39618208.405546635 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 237164.05166469404 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 23326342.436986063 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 9622167.07036514 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 94 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 22070197.74743404 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 725965.9341933965 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 4046.3319020899676 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 2492631.3639222253 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 14921.486290417988 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 1467607.3225936475 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 605391.2176688408 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 58645168.60344548 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 1929044.54678388 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 10751.95697560777 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 6623447.06994982 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 39649.53505762323 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 3899742.0803428115 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 1608652.1035074121 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 95957331.98645999 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 3156371.9979063356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 17592.738320679226 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 10837522.075920505 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 64875.9938667754 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 6380898.109363403 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 2632134.370535496 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 133269495.36947447 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 4383699.449028788 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 24433.51966575067 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 15051597.081891188 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 90102.45267592753 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 8862054.138383994 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 3655616.6375635793 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 170581658.75248894 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 5611026.900151243 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 31274.301010822117 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 19265672.08786187 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 115328.91148507968 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 11343210.167404586 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 4679098.904591662 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 207893822.1355035 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 6838354.351273698 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 38115.08235589357 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 23479747.093832564 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 140555.37029423183 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 13824366.19642518 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 5702581.171619744 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 245205985.51851797 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 8065681.802396152 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 44955.86370096503 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 27693822.099803247 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 165781.829103384 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 16305522.22544577 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 6726063.438647828 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 282518148.9015324 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 9293009.253518606 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 51796.64504603649 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 31907897.10577393 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 191008.2879125361 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 18786678.254466362 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 7749545.705675911 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 319830312.2845469 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 10520336.704641059 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 58637.42639110793 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 36121972.11174462 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 216234.74672168825 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 21267834.283486955 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 8773027.972703991 tonnes. circ_OL_0
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 95 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 22070197.747464508 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 725965.9341943985 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 4046.331902095554 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 2492631.363925666 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 14921.486290438592 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 1467607.3225956738 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 605391.2176696765 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 55031026.2699062 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 1810162.7748350636 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 10089.343092839365 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 6215262.030678641 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 37206.04198616692 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 3659411.5760900965 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 1509515.246956853 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 88177846.5669855 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 2900477.534942164 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 16166.453862565426 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 9958898.804227699 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 59616.34525095403 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 5863583.76998651 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 2418741.0786027038 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 121324666.8640648 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 3990792.295049263 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 22243.564632291484 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 13702535.577776754 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 82026.64851574112 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 8067755.963882922 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 3327966.910248554 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 154471487.16114405 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 5081107.055156363 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 28320.675402017543 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 17446172.35132581 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 104436.9517805282 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 10271928.157779332 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 4237192.7418944035 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 187618307.4582234 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 6171421.815263464 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 34397.78617174361 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 21189809.12487487 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 126847.25504531531 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 12476100.351675743 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 5146418.5735402545 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 220765127.7553027 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 7261736.575370564 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 40474.89694146968 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 24933445.898423925 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 149257.5583101024 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 14680272.545572158 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 6055644.405186105 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 253911948.05238196 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 8352051.335477665 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 46552.00771119573 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 28677082.671972983 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 171667.86157488945 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 16884444.739468567 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 6964870.236831955 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 287058768.3494613 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 9442366.09558476 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 52629.11848092178 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 32420719.445522044 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 194078.16483967655 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 19088616.933364976 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 7874096.068477805 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 96 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 22070197.7474664 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 725965.9341944604 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 4046.3319020959016 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 2492631.363925879 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 14921.486290439869 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 1467607.3225957993 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 605391.2176697283 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 50869070.46973228 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 1673261.5034861846 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 9326.293539679373 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 5745206.36187623 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 34392.17655893752 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 3382652.986133353 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 1395351.725696871 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 79667943.19199815 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 2620557.072777909 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 14606.255177262854 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 8997781.359826582 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 53862.8668274352 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 5297698.649670909 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 2185312.233724014 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 108466815.91426404 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 3567852.642069633 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 19886.216814846324 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 12250356.357776934 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 73333.55709593286 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 7212744.313208462 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 2975272.7417511577 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 137265688.63652986 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 4515148.211361356 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 25166.1784524298 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 15502931.355727283 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 92804.24736443053 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 9127789.976746015 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 3765233.2497783005 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 166064561.3587958 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 5462443.780653082 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 30446.140090013283 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 18755506.35367764 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 112274.9376329282 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 11042835.640283572 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 4555193.757805443 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 194863434.08106166 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 6409739.349944807 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 35726.10172759675 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 22008081.351627987 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 131745.62790142588 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 12957881.303821124 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 5345154.265832587 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 223662306.80332753 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 7357034.9192365315 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 41006.06336518023 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 25260656.349578336 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 151216.31816992353 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 14872926.96735868 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 6135114.773859729 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 252461179.52559337 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 8304330.488528256 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 46286.025002763716 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 28513231.347528692 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 170687.00843842118 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 16787972.630896233 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 6925075.281886872 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 97 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 18419208.620801218 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 605872.1424486398 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 3376.9625585825893 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 2080284.8090553994 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 12453.081393327717 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 1224826.6081535567 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 505243.6440783449 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 40951643.31760132 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 1347042.6653188302 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 7508.040602775526 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 4625121.700573658 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 27687.08243244987 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 2723171.4139100756 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 1123314.1405117265 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 63484078.01440145 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 2088213.1881890213 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 11639.118646968467 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 7169958.592091917 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 42921.083471572034 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 4221516.219666596 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 1741384.636945108 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 86016512.71120156 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 2829383.7110592113 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 15770.1966911614 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 9714795.483610176 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 58155.08451069419 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 5719861.025423114 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 2359455.133378491 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 108548947.40800166 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 3570554.2339294013 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 19901.274735354335 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 12259632.375128431 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 73389.08554981634 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 7218205.831179634 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 2977525.629811872 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 131081382.10480177 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 4311724.756799594 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 24032.35277954728 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 14804469.2666467 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 88623.0865889385 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 8716550.636936156 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 3595596.126245254 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 153613816.80160192 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 5052895.279669784 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 28163.43082374022 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 17349306.15816495 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 103857.08762806069 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 10214895.442692675 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 4213666.622678636 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 176146251.498402 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 5794065.8025399735 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 32294.508867933153 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 19894143.04968321 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 119091.08866718282 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 11713240.248449193 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 4831737.119112017 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 198678686.19520208 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 6535236.325410165 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 36425.58691212609 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 22438979.941201463 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 134325.089706305 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 13211585.054205708 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 5449807.6155453995 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 98 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 13583067.955223218 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 446794.5747551111 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 2490.3085067221787 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 1534085.991930575 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 9183.404906249347 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 903236.5827664767 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 372587.05804062105 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 29256488.85710115 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 962348.1632299138 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 5363.860603351029 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 3304258.6458895677 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 19780.080921012883 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 1945475.875269542 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 802513.0366570711 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 44929909.75897912 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 1477901.7517047164 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 8237.412699979883 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 5074431.299848563 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 30376.756935776433 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 2987715.167772608 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 1232439.015273521 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 60603330.660857044 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 1993455.3401795183 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 11110.964796608732 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 6844603.953807557 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 40973.43295053997 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 4029954.460275673 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 1662364.9938899712 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 76276751.56273496 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 2509008.9286543215 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 13984.516893237584 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 8614776.607766548 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 51570.1089653035 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 5072193.75277874 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 2092290.9725064212 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 91950172.46461292 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 3024562.517129124 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 16858.068989866435 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 10384949.261725547 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 62166.784980067045 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 6114433.045281806 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 2522216.9511228716 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 107623593.36649089 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 3540116.105603927 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 19731.621086495292 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 12155121.915684538 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 72763.4609948306 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 7156672.337784872 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 2952142.929739321 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 123297014.26836881 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 4055669.694078729 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 22605.173183124134 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 13925294.569643531 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 83360.13700959411 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 8198911.630287938 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 3382068.9083557716 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 138970435.17024675 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 4571223.282553531 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 25478.72527975299 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 15695467.223602524 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 93956.81302435767 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 9241150.922791 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 3811994.886972222 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 99 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_20 = 7545107.179657256 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_20 = 248184.94355837896 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_20 = 1383.3137444037975 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_20 = 852152.3465894188 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_20 = 5101.187340021886 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_20 = 501728.8323982648 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_20 = 206964.23635196837 tonnes. circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_30 = 15758604.231619045 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_30 = 518355.56588619197 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_30 = 2889.1695382395765 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_30 = 1779793.3488809816 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_30 = 10654.267790852264 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_30 = 1047903.7491573107 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_30 = 432262.5793260223 tonnes. circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_40 = 23972101.28358085 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_40 = 788526.1882140049 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_40 = 4395.025332075357 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_40 = 2707434.3511725445 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_40 = 16207.348241682635 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_40 = 1594078.665916357 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_40 = 657560.9223000762 tonnes. circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_50 = 32185598.33554264 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_50 = 1058696.810541818 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_50 = 5900.881125911135 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_50 = 3635075.3534641075 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_50 = 21760.428692513015 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_50 = 2140253.582675402 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_50 = 882859.2652741304 tonnes. circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_60 = 40399095.387504436 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_60 = 1328867.432869631 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_60 = 7406.736919746916 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_60 = 4562716.355755669 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_60 = 27313.50914334339 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_60 = 2686428.499434449 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_60 = 1108157.6082481837 tonnes. circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_70 = 48612592.439466245 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_70 = 1599038.0551974443 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_70 = 8912.592713582697 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_70 = 5490357.358047235 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_70 = 32866.589594173754 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_70 = 3232603.416193495 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_70 = 1333455.9512222377 tonnes. circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_80 = 56826089.49142805 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_80 = 1869208.677525257 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_80 = 10418.448507418478 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_80 = 6417998.360338795 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_80 = 38419.670045004146 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_80 = 3778778.332952541 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_80 = 1558754.2941962918 tonnes. circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_90 = 65039586.54338981 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_90 = 2139379.2998530697 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_90 = 11924.304301254253 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_90 = 7345639.36263036 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_90 = 43972.75049583451 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_90 = 4324953.249711588 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_90 = 1784052.6371703458 tonnes. circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass Recycled surplus End of Sim for Mat glass Scenario circ_CL_100 = 73253083.5953516 tonnes. ==> Working on Material : silicon Recycled surplus End of Sim for Mat silicon Scenario circ_CL_100 = 2409549.9221808827 tonnes. ==> Working on Material : silver Recycled surplus End of Sim for Mat silver Scenario circ_CL_100 = 13430.160095090034 tonnes. ==> Working on Material : aluminium_frames Recycled surplus End of Sim for Mat aluminium_frames Scenario circ_CL_100 = 8273280.364921921 tonnes. ==> Working on Material : copper Recycled surplus End of Sim for Mat copper Scenario circ_CL_100 = 49525.8309466649 tonnes. ==> Working on Material : encapsulant Recycled surplus End of Sim for Mat encapsulant Scenario circ_CL_100 = 4871128.166470632 tonnes. ==> Working on Material : backsheet Recycled surplus End of Sim for Mat backsheet Scenario circ_CL_100 = 2009350.9801444006 tonnes. circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet 100 PV_ICE >>>> Calculating Material Flows <<<< Working on Scenario: PV_ICE ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_20
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
>>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_20 ******************** Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_CL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_CL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_0 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_0 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_10 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_10 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_20 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_20 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_30 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_30 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_40 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_40 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_50 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_50 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_60 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_60 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_70 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_70 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_80 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_80 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_90 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_90 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet circ_OL_100 >>>> Calculating Material Flows <<<< Working on Scenario: circ_OL_100 ********************
C:\Users\hmirletz\AppData\Local\Temp\1\ipykernel_3660\2775174709.py:9: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy sim3.scenario[scen].dataIn_m['new_Installed_Capacity_[MW]'][row] += Under_Installment #overwrite new installed
Finished Area+Power Generation Calculations ==> Working on Material : glass ==> Working on Material : silicon ==> Working on Material : silver ==> Working on Material : aluminium_frames ==> Working on Material : copper ==> Working on Material : encapsulant ==> Working on Material : backsheet >>>> Calculating Energy Flows <<<< Working on Scenario: PV_ICE ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_CL_0 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_CL_10 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_CL_20 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_CL_30 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_CL_40 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_CL_50 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_CL_60 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_CL_70 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_CL_80 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_CL_90 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_CL_100 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_OL_0 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_OL_10 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_OL_20 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_OL_30 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_OL_40 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_OL_50 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_OL_60 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_OL_70 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_OL_80 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_OL_90 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet Working on Scenario: circ_OL_100 ******************** ==> Working on Energy for Material : glass ==> Working on Energy for Material : silicon ==> Working on Energy for Material : silver ==> Working on Energy for Material : aluminium_frames ==> Working on Energy for Material : copper ==> Working on Energy for Material : encapsulant ==> Working on Energy for Material : backsheet
sim3.saveSimulation(customname='_EnergySensitivity_withreplacements')
#aggregate results - mass
cc_yearly3, cc_cumu3 = sim3.aggregateResults() #have to do this to get auto plots
cc_yearly3.to_csv(os.path.join(testfolder, 'cc_10scen_yearly3.csv'))
cc_cumu3.to_csv(os.path.join(testfolder, 'cc_10scen_cumu3.csv'))
#aggregate results - energy
allenergy3, energyGen3, energy_demands3 = sim3.aggregateEnergyResults()
allenergy3.to_csv(os.path.join(testfolder, 'cc_10scen_allenergy3.csv'))
energyGen3.to_csv(os.path.join(testfolder, 'cc_10scen_energyGen3.csv'))
energy_demands3.to_csv(os.path.join(testfolder, 'cc_10scen_energy_demands3.csv'))
#UnderInstall_df.to_csv(os.path.join(testfolder, 'cc_10scen_underInstalls.csv'))
:) Saved Input and Output Dataframes
C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands C:\Users\hmirletz\Documents\GitHub\PV_ICE\PV_ICE\main.py:2236: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy scende_demands.loc[:,colname] = scende_demands.sum(axis=1) #sums module and material energy demands
scennames_labels3=sim3.scenario.keys()
cumu_installs3 = cc_cumu3.filter(like='newInstalled')
total_installed3 = cumu_installs3.loc[2100]
total_installed3.index= scennames_labels3
plt.bar(scennames_labels3, total_installed3/1e6)
#plt.xticks(rotation=90)
plt.ylabel('Cumulative installed [TW]')
plt.title('Cumulative Installs with Replacements')
#plt.ylim(0,410)
Text(0.5, 1.0, 'Cumulative Installs with Replacements')
cumu_area_deployed3 = pd.DataFrame()
for scen in sim3.scenario.keys():
area_deploy = sim3.scenario[scen].dataOut_m['Area'].cumsum()
cumu_area_deployed3 = pd.concat([cumu_area_deployed3,area_deploy], axis=1)
cumu_area_deployed3.columns = sim3.scenario.keys()
cumu_area_deployed3_total = cumu_area_deployed3.iloc[-1,:]
#cumu_area_deployed
plt.bar(scennames_labels3, cumu_area_deployed3.iloc[-1,:]/1e12)
plt.xticks(rotation=45)
plt.ylabel('Cumulative installed Area [m2 1e12]')
plt.title('Cumulative Area Deployed with Replacements')
#plt.ylim(0,410)
Text(0.5, 1.0, 'Cumulative Area Deployed with Replacements')
cumu_virgin_module3 = cc_cumu3.filter(like='VirginStock_Module')
virgin3 = cumu_virgin_module3.loc[2100]
virgin3.index= scennames_labels3
plt.bar(scennames_labels3, virgin3/1e9)
#plt.legend(scennames)
plt.title('Cumulative Virgin Material Demands')
plt.ylabel('Virgin Material Requirements\n[billion tonnes]')
#plt.xticks(rotation=90)
Text(0, 0.5, 'Virgin Material Requirements\n[billion tonnes]')
cumu_lifecycle_wastes3 = cc_cumu3.filter(like='WasteAll_Module')
wastes3 = cumu_lifecycle_wastes3.loc[2100]
wastes3.index= scennames_labels3
plt.bar(scennames_labels3, wastes3/1e9)
#plt.legend(scennames)
plt.title('Cumulative Lifecycle Wastes')
plt.ylabel('Lifecycle Wastes\n[billion tonnes]')
Text(0, 0.5, 'Lifecycle Wastes\n[billion tonnes]')
e_annual_sumDemands3 = energy_demands3.filter(like='demand_total')
e_annual_sumDemands_cumu3 = e_annual_sumDemands3.cumsum()
cumu_e_demands3 = e_annual_sumDemands_cumu3.loc[2100]
cumu_e_demands3.index= scennames_labels3
plt.bar(scennames_labels3, cumu_e_demands3/1e12)
plt.title('Cumulative Lifecycle Energy Demands')
plt.ylabel('Cumulative Energy Demands\n[TWh]')
Text(0, 0.5, 'Cumulative Energy Demands\n[TWh]')
cumu_e_demands3_norm = cumu_e_demands3/cumu_e_demands3.loc['PV_ICE']-1
plt.bar(scennames_labels3, cumu_e_demands3_norm)
plt.title('Energy Demands - Normalized')
plt.ylabel('Unitless')
plt.xticks(rotation=90)
([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22], [Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, '')])
energyGen_cumu3 = energyGen3.cumsum()
energyGen_cumu3.columns = e_annual_sumDemands_cumu3.columns = scennames_labels3
netEnergy_cumu3 = energyGen_cumu3.loc[[2100]] - e_annual_sumDemands_cumu3.loc[[2100]]
#netEnergy_cumu.index= scennames_labels
plt.bar(scennames_labels3, netEnergy_cumu3.loc[2100]/1e12)
plt.title('Net Energy Cumulatively')
plt.ylabel('Cumulative Net Energy [TWh]')
Text(0, 0.5, 'Cumulative Net Energy [TWh]')
netEnergy_cumu_norm3 = netEnergy_cumu3/netEnergy_cumu3.loc[2100,'PV_ICE']
netEnergy_cumu_norm_waterfall3 = netEnergy_cumu_norm3-1
plt.bar(scennames_labels3, netEnergy_cumu_norm_waterfall3.loc[2100])
plt.title('Net Energy Cumulatively Relative to PV ICE')
plt.ylabel('Relative Cumulative Net Energy')
#plt.ylim(-0.026,0.005)
plt.plot(0.0, lw=2)
plt.xticks(rotation=90)
([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22], [Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, '')])
energyBalance_allyears3 = energyGen_cumu3/e_annual_sumDemands_cumu3
energyBalance3 = energyBalance_allyears3.loc[2100]
energyBalance3.index = scennames_labels3
plt.bar(scennames_labels3, energyBalance3)
plt.title('Energy Balance')
plt.ylabel('Unitless')
Text(0, 0.5, 'Unitless')
energyBalance3_norm = energyBalance3/energyBalance3.loc['PV_ICE']-1
plt.bar(scennames_labels3, energyBalance3_norm)
plt.title('Energy Balance - Normalized')
plt.ylabel('Unitless')
plt.xticks(rotation=90)
([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22], [Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, ''), Text(0, 0, '')])
discussTable3 = pd.concat([total_installed3,cumu_area_deployed3_total,virgin3,wastes3,
cumu_e_demands3, netEnergy_cumu3.loc[2100].T, energyBalance3],
axis=1, keys=['replacements','area','virgin','wastes','energydemand','netenergy','energybalance'])
#discussTable.to_csv(os.path.join(testfolder,'discussiontable.csv'))
discussTable3
| replacements | area | virgin | wastes | energydemand | netenergy | energybalance | |
|---|---|---|---|---|---|---|---|
| PV_ICE | 1.906612e+08 | 7.728509e+11 | 1.008632e+10 | 5.139612e+09 | 1.467115e+17 | 7.041318e+18 | 48.994305 |
| circ_CL_0 | 1.906612e+08 | 7.728509e+11 | 9.710409e+09 | 4.967325e+09 | 1.959434e+17 | 6.992086e+18 | 36.684215 |
| circ_CL_10 | 1.906612e+08 | 7.728509e+11 | 9.214019e+09 | 4.470935e+09 | 1.936921e+17 | 6.994337e+18 | 37.110589 |
| circ_CL_20 | 1.906612e+08 | 7.728509e+11 | 8.717629e+09 | 3.974545e+09 | 1.914409e+17 | 6.996589e+18 | 37.546990 |
| circ_CL_30 | 1.906612e+08 | 7.728509e+11 | 8.221239e+09 | 3.478155e+09 | 1.891897e+17 | 6.998840e+18 | 37.993777 |
| circ_CL_40 | 1.906612e+08 | 7.728509e+11 | 7.724848e+09 | 2.981765e+09 | 1.869384e+17 | 7.001091e+18 | 38.451326 |
| circ_CL_50 | 1.906612e+08 | 7.728509e+11 | 7.228458e+09 | 2.485374e+09 | 1.846872e+17 | 7.003342e+18 | 38.920028 |
| circ_CL_60 | 1.906612e+08 | 7.728509e+11 | 6.732068e+09 | 1.988984e+09 | 1.824359e+17 | 7.005594e+18 | 39.400299 |
| circ_CL_70 | 1.906612e+08 | 7.728509e+11 | 6.235678e+09 | 1.492594e+09 | 1.801847e+17 | 7.007845e+18 | 39.892570 |
| circ_CL_80 | 1.906612e+08 | 7.728509e+11 | 5.739288e+09 | 9.962040e+08 | 1.779334e+17 | 7.010096e+18 | 40.397298 |
| circ_CL_90 | 1.906612e+08 | 7.728509e+11 | 5.242898e+09 | 4.998139e+08 | 1.756822e+17 | 7.012347e+18 | 40.914962 |
| circ_CL_100 | 1.906612e+08 | 7.728509e+11 | 4.746508e+09 | 3.423740e+06 | 1.734309e+17 | 7.014599e+18 | 41.446065 |
| circ_OL_0 | 1.906612e+08 | 7.728509e+11 | 1.011723e+10 | 4.967325e+09 | 1.475406e+17 | 7.040489e+18 | 48.718994 |
| circ_OL_10 | 1.906612e+08 | 7.728509e+11 | 1.011723e+10 | 4.470935e+09 | 1.514188e+17 | 7.036611e+18 | 47.471177 |
| circ_OL_20 | 1.906612e+08 | 7.728509e+11 | 1.011723e+10 | 3.974545e+09 | 1.552970e+17 | 7.032733e+18 | 46.285682 |
| circ_OL_30 | 1.906612e+08 | 7.728509e+11 | 1.011723e+10 | 3.478155e+09 | 1.591753e+17 | 7.028854e+18 | 45.157956 |
| circ_OL_40 | 1.906612e+08 | 7.728509e+11 | 1.011723e+10 | 2.981765e+09 | 1.630535e+17 | 7.024976e+18 | 44.083875 |
| circ_OL_50 | 1.906612e+08 | 7.728509e+11 | 1.011723e+10 | 2.485374e+09 | 1.669317e+17 | 7.021098e+18 | 43.059702 |
| circ_OL_60 | 1.906612e+08 | 7.728509e+11 | 1.011723e+10 | 1.988984e+09 | 1.708099e+17 | 7.017220e+18 | 42.082036 |
| circ_OL_70 | 1.906612e+08 | 7.728509e+11 | 1.011723e+10 | 1.492594e+09 | 1.746882e+17 | 7.013341e+18 | 41.147780 |
| circ_OL_80 | 1.906612e+08 | 7.728509e+11 | 1.011723e+10 | 9.962040e+08 | 1.785664e+17 | 7.009463e+18 | 40.254105 |
| circ_OL_90 | 1.906612e+08 | 7.728509e+11 | 1.011723e+10 | 4.998139e+08 | 1.824446e+17 | 7.005585e+18 | 39.398424 |
| circ_OL_100 | 1.906612e+08 | 7.728509e+11 | 1.011723e+10 | 3.423740e+06 | 1.863228e+17 | 7.001707e+18 | 38.578364 |
discussTable3_norm = (discussTable3/discussTable3.loc['PV_ICE'])*100-100
discussTable3_norm
| replacements | area | virgin | wastes | energydemand | netenergy | energybalance | |
|---|---|---|---|---|---|---|---|
| PV_ICE | 0.0 | 0.0 | 0.000000 | 0.000000 | 0.000000 | 0.000000 | 0.000000 |
| circ_CL_0 | 0.0 | 0.0 | -3.726940 | -3.352144 | 33.556912 | -0.699185 | -25.125553 |
| circ_CL_10 | 0.0 | 0.0 | -8.648359 | -13.010268 | 32.022441 | -0.667213 | -24.255302 |
| circ_CL_20 | 0.0 | 0.0 | -13.569779 | -22.668392 | 30.487970 | -0.635241 | -23.364583 |
| circ_CL_30 | 0.0 | 0.0 | -18.491199 | -32.326516 | 28.953499 | -0.603269 | -22.452666 |
| circ_CL_40 | 0.0 | 0.0 | -23.412618 | -41.984640 | 27.419028 | -0.571298 | -21.518786 |
| circ_CL_50 | 0.0 | 0.0 | -28.334038 | -51.642765 | 25.884557 | -0.539326 | -20.562138 |
| circ_CL_60 | 0.0 | 0.0 | -33.255458 | -61.300889 | 24.350085 | -0.507354 | -19.581881 |
| circ_CL_70 | 0.0 | 0.0 | -38.176877 | -70.959013 | 22.815614 | -0.475382 | -18.577128 |
| circ_CL_80 | 0.0 | 0.0 | -43.098297 | -80.617137 | 21.281143 | -0.443410 | -17.546951 |
| circ_CL_90 | 0.0 | 0.0 | -48.019717 | -90.275261 | 19.746672 | -0.411438 | -16.490372 |
| circ_CL_100 | 0.0 | 0.0 | -52.941136 | -99.933385 | 18.212201 | -0.379466 | -15.406363 |
| circ_OL_0 | 0.0 | 0.0 | 0.306455 | -3.352144 | 0.565100 | -0.011774 | -0.561924 |
| circ_OL_10 | 0.0 | 0.0 | 0.306455 | -13.010268 | 3.208533 | -0.066852 | -3.108787 |
| circ_OL_20 | 0.0 | 0.0 | 0.306455 | -22.668392 | 5.851967 | -0.121930 | -5.528444 |
| circ_OL_30 | 0.0 | 0.0 | 0.306455 | -32.326516 | 8.495401 | -0.177009 | -7.830194 |
| circ_OL_40 | 0.0 | 0.0 | 0.306455 | -41.984640 | 11.138834 | -0.232087 | -10.022450 |
| circ_OL_50 | 0.0 | 0.0 | 0.306455 | -51.642765 | 13.782268 | -0.287165 | -12.112843 |
| circ_OL_60 | 0.0 | 0.0 | 0.306455 | -61.300889 | 16.425702 | -0.342243 | -14.108312 |
| circ_OL_70 | 0.0 | 0.0 | 0.306455 | -70.959013 | 19.069135 | -0.397321 | -16.015179 |
| circ_OL_80 | 0.0 | 0.0 | 0.306455 | -80.617137 | 21.712569 | -0.452399 | -17.839217 |
| circ_OL_90 | 0.0 | 0.0 | 0.306455 | -90.275261 | 24.356002 | -0.507477 | -19.585707 |
| circ_OL_100 | 0.0 | 0.0 | 0.306455 | -99.933385 | 26.999436 | -0.562555 | -21.259493 |